Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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;
    }
}
Source by jbrizio.github.io #
 
PREVIOUS NEXT
Tagged: #css #media #query #width
ADD COMMENT
Topic
Name
5+3 =