If I opened this on a screen 800px wide, would both the small and big jpg be loaded? or is the browser intelligent enough to ignore the smaller image?
@media screen and (min-width: 480px) {
div {
background-image: url(images/small.jpg);
}
}
@media screen and (min-width: 600px) {
div {
background-image: url(images/big.jpg);
}
}