Answers for "how to make width take the whole screen css"

CSS
1

how to specify css for smaller screen

@media only screen and (max-width: 991px) and (min-width: 769px){
 /* CSS that should be displayed if width is equal to or less than 991px and larger 
  than 768px goes here */
}

@media only screen and (max-width: 991px){
 /* CSS that should be displayed if width is equal to or less than 991px goes here */
}
Posted by: Guest on January-20-2022
-1

full width page css

*{margin: 0; padding: 0;}
Posted by: Guest on October-14-2021

Code answers related to "how to make width take the whole screen css"

Browse Popular Code Answers by Language