make div height of page responsive to window code example
Example 1: css window height
div {
height: 100vh;
}
Example 2: set element equal to the size of the viewport
.container {
height: 100vh;
overflow: auto;
}
div {
height: 100vh;
}
.container {
height: 100vh;
overflow: auto;
}