Guest User

Untitled

a guest
Nov 15th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. /* max-width */
  2. @media screen and (max-width: 600px) {
  3.  
  4. }
  5.  
  6. /* min-width */
  7. @media screen and (min-width: 900px) {
  8.  
  9. }
  10.  
  11. /* min-width & max-width */
  12. @media screen and (min-width: 600px) and (max-width: 900px) {
  13.  
  14. }
  15.  
  16. /* max device width */
  17. @media screen and (max-device-width: 480px) {
  18.  
  19. }
Add Comment
Please, Sign In to add comment