Answers for "make a div fill the page"

CSS
1

css div fill whole page

div {
  height: 100vh;
  width: 100vw;
}
Posted by: Guest on February-24-2021
0

how to make a div fill the screen

.section{
  position: absolute /*relative and fixed elements also works*/;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
Posted by: Guest on December-05-2021

Code answers related to "make a div fill the page"

Browse Popular Code Answers by Language