Answers for "make a div take the whole page's height"

3

how to set a div size to full screen

height: 100vh
Posted by: Guest on July-27-2020
0

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>
Posted by: Guest on June-13-2020

Code answers related to "make a div take the whole page's height"

Browse Popular Code Answers by Language