Answers for "css media queries two and"

CSS
0

multiple css media queries

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

css media query between two width

/* No greater than 768px, no less than 400px */
@media (max-width:768px) and (min-width:400px) {
    .class {
        font-size: 15px;
    }
}
Posted by: Guest on January-07-2022

Browse Popular Code Answers by Language