Answers for "media queries multiple conditions"

1

two condition inside media query

@media only screen and (max-width: 600px) and (min-width: 400px)  {...}
Posted by: Guest on July-15-2021
1

how to put mulitple conditions in media query

@media (property1: value) and (property2: value) {
	/* Your code below: */
}
Posted by: Guest on August-13-2021

Browse Popular Code Answers by Language