Answers for "how to use between in media query"

CSS
0

how to use between in media query

/* No less than 400px, no greater than 900px */
@media (min-width:400px) and (max-width:900px) {
    .foo {
        display:none;
    }
}​
Posted by: Guest on March-23-2022

Browse Popular Code Answers by Language