Answers for "css media query between two width"

CSS
0

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