Answers for "css combine two media queries"

CSS
0

multiple css media queries

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

how to combine two screen sizes in media queries css

@media (min-width: 30em) and (max-width: 50em) { ... }
Posted by: Guest on September-10-2020

Browse Popular Code Answers by Language