Guest User

Untitled

a guest
Dec 9th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <a href="#"><img src="img/picture.jpg" /></a>
  2.  
  3. @media all and (max-width: 800px)
  4.  
  5. <style>
  6.  
  7. .adaptive-image:after { content: url('image-def.jpg'); }
  8.  
  9. @media screen and (min-width: 800px) {
  10. .adaptive-image:after { content: url('image-800.jpg'); }
  11. }
  12. @media screen and (min-width: 1024px) {
  13. .adaptive-image:after { content: url('image-1024.jpg'); }
  14. }
  15.  
  16. </style>
  17. <div class="adaptive-image"></div>
  18.  
  19. <a href="#"><img id="adaptive" src="img/picture.jpg" /></a>
  20.  
  21. #adaptive{
  22. content:url("img/small_picture.jpg");
  23. }
Add Comment
Please, Sign In to add comment