Advertisement
A_God

Responsive CSS

Sep 9th, 2021
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.36 KB | None | 0 0
  1. @media only screen and (max-width: 600px) {
  2.   .example {background: red;}
  3. }
  4.  
  5. /* Small devices (portrait tablets and large phones, 600px and up) */
  6. @media only screen and (min-width: 600px) {
  7.   .example {background: green;}
  8. }
  9.  
  10. /* Medium devices (landscape tablets, 768px and up) */
  11. @media only screen and (min-width: 768px) {
  12.   .example {background: blue;}
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement