Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #image {
  2. background-image: url(your-large-image.jpg);
  3. }
  4.  
  5. @media only screen and (max-width: 320px) { // change/add media queries as necessary
  6. #image {
  7. background-image: url(your-small-image.jpg);
  8. }
  9. }
  10.  
  11. <div id="image"></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement