Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <body>
  2. <figure>
  3. <img src="zadanie-domowe-rwd-materialy/obrazy/man-1.jpg" alt="Zdjęcie nr 1" id="background">
  4. </figure>
  5. </body>
  6.  
  7. #background {
  8. width: 100vw;
  9. background-position: center;
  10. background-size: cover;
  11. }
  12.  
  13. figure {
  14. width: 100%;
  15. }
  16.  
  17. @media (max-width: 992px) {
  18. #background {
  19. height: 50vh;
  20. }
  21. }
  22.  
  23. @media (min-width: 993px) and (max-width: 1170px) {
  24. #background {
  25. height: 70%;
  26. width: 100%;
  27. background-image: url('../zadanie-domowe-rwd-materialy/obrazy/man-2.jpg');
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement