Answers for "media screen two max width"

CSS
1

css media queries between two sizes

/* No greater than 900px, no less than 400px */
@media (max-width:900px) and (min-width:400px) {
    .foo {
        display:none;
    }
}
Posted by: Guest on August-07-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

Code answers related to "media screen two max width"

Browse Popular Code Answers by Language