This css snippet demonstrates how you can use multiple media queries in one line
1 2 3 4 |
/* Target all browser windows that are 768 pixels wide and less. Also target all devices that are a maximum of 768 pixels wide */ @media only screen and (max-device-width: 768px), only screen and (max-width: 768px) { /*style goes here*/ } |