Answers for "css scale larger than screen size"

CSS
0

css if screen size less than

@media (max-width:960px) { css... } //nothing with screen size bigger than 960px

@media (min-width:960px) { css... } //nothing with screen size smaller than 960px
Posted by: Guest on October-17-2020
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

Code answers related to "css scale larger than screen size"

Browse Popular Code Answers by Language