Answers for "syntax media queries in css with multiple values"

CSS
1

multiple values in @media

@media screen and (min-width: 601px) and (max-width: 1199px){
	/*Code goes here*/
}
Posted by: Guest on May-27-2021
0

multiple css media queries

@media (min-width:400px) and (max-width:699px){
	/* css here */
}
Posted by: Guest on February-23-2021

Browse Popular Code Answers by Language