Answers for "make div full page height"

0

full page height css

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<style>
body {
  height: 100%;
  margin: 0;
}

.full-height {
  height: 100%;
  background: green;
}
</style>

</head>
<body>

<div class="full-height">full page height css</div>

</body>
</html>
Posted by: Guest on March-17-2021
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
1

css window height

body, html {
  height: 100%;
}

#right {
  height: 100%;
}
Posted by: Guest on April-18-2020

Browse Popular Code Answers by Language