Advertisement
fggkyle

Untitled

Feb 2nd, 2021
1,813
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.57 KB | None | 0 0
  1.     <style>
  2.       /* 0px up to 600 px */
  3.  
  4.       body{
  5.         background-color: beige;
  6.       }
  7.  
  8.       /* 600px up to 1080px */
  9.       @media only screen and (min-width: 600px){
  10.         body {
  11.           background-color: blue;
  12.         }
  13.       }
  14.  
  15.       /* 1080px up to 1280 px */
  16.       @media only screen and (min-width: 1080px){
  17.         body {
  18.           background-color: red;
  19.         }
  20.       }
  21.  
  22.       /* 1280px and up */
  23.       @media only screen and (min-width: 1280px){
  24.         body {
  25.           background-color: orange;
  26.         }
  27.       }
  28.  
  29.     </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement