Sizing a child to 100% height of parent element
make sure the body is sized to the max
html, body { height: 100vh; }
size the child (and all intermediate elements) to 100%
.the-child { display: flex; height: 100%; }
make sure the body is sized to the max
html, body {
height: 100vh;
}
size the child (and all intermediate elements) to 100%
.the-child {
display: flex;
height: 100%;
}
Close the knowledge gap between you and your clients!