Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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;
    }
}​
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #media #query
ADD COMMENT
Topic
Name
5+5 =