Advertisement
rexcoder

Media Queries

Jan 3rd, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.32 KB | None | 0 0
  1. /* This CSS for small Mobile*/
  2. @media only screen and (min-width: 320px) and (max-width: 479px) {}
  3.  
  4. @media only screen and (min-width: 480px) and (max-width: 767px) {}
  5.  
  6. /* This CSS for Tablet */
  7. @media (min-width: 768px) {}
  8.  
  9. /* This CSS for Medium Devices */
  10. @media (min-width: 992px) {}
  11.  
  12. @media (min-width: 1200px) {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement