how to make div height fill screen code example
Example 1: how to set a div size to full screen
height: 100vh
Example 2: css 100% height
<!DOCTYPE html>
<html>
<head>
<title>100% height</title>
<style>
html,
body {
height: 100%;
margin: 0;
}
.container {
height: 100%;
background: #000; /* to see the effect */
}
</style>
</head>
<body>
<div class="container"></div>
</body>
</html>