Different image set based on screen resolution
-
Is it possible to have different image sets active depending on the user’s screen resolution?
I tried this for one image and it worked (as an example):
@media only screen and ( max-width: 640px ) {
body {background: url(“image”);}
}But can you do this with an image set instead of only one image?
- The topic ‘Different image set based on screen resolution’ is closed to new replies.