Hi Ralph,
Thank you for your response, I agree that the less thing is just....................that. Confusing. Just so I have it right, I would do this for every class or id using a background?
I just want to make sure I have this concept right.
So for example:
Code:
#logo {
background-image: url('/images/my_image.png');
}
@media all and (-webkit-min-device-pixel-ratio: 1.5) {
#logo {
background-image: url('/images/my_image@2x.png');
}
}
#Background {
background-image: url('/images/my_image2.png');
}
@media all and (-webkit-min-device-pixel-ratio: 1.5) {
#Background{
background-image: url('/images/my_image2@2x.png');
}
}
Bookmarks