I stumbled upon a bug in the way Chrome version 75 handles flexbox. Therefore, I am curious to explore if the issue persists with grid
, but for my test to be accurate, I need a grid
property that functions similarly to flex-grow
considering the current structure of my document.
body {
display: flex;
flex-direction: column;
}
header {
/* height is implicitly determined by font-size and padding */
}
main {
flex: 1;
scrollbar-width: none;
overflow-y: auto;
}
::-webkit-scrollbar {
display: none;
-ms-overflow-style: none;
}
footer {
/* height is implicitly determined by font-size and padding */
}
Does anyone know of a similar grid
property?