css howto get the height of div code example
Example 1: css calc height
div {
width: calc(100% - 100px);
}
Example 2: css fill parent height
html, body {
height: 100%
}
body {
display: flex;
align-items: stretch;
}
#root {
width: 100%
}