Answers for "how to make a div take the height of the screen"

CSS
4

Height 100% of the screen

div {
    height: 100vh;
}
Posted by: Guest on April-18-2020
1

css set div width to screen

.container{
   width:100%;
}
Posted by: Guest on December-07-2020

Code answers related to "how to make a div take the height of the screen"

Browse Popular Code Answers by Language