Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  2.  
  3. body {
  4. /* big screens */
  5. background-color: red;
  6. }
  7.  
  8. @media screen and (max-width: 900px) {
  9. body {
  10. /* medium screens */
  11. background-color: yellow;
  12. }
  13. }
  14.  
  15. @media screen and (max-width: 400px) {
  16. body {
  17. /* small screens */
  18. backgund-color: green;
  19. }
  20. }
  21.  
  22. body {
  23. font-size: 2vw;
  24. }
  25.  
  26. img {
  27. width: 100%;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement