Answers for "css make div take all the screen"

CSS
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
7

make a div full screen css

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

Code answers related to "css make div take all the screen"

Browse Popular Code Answers by Language