I have a question to which I think I know the answer. I also did some research online but you never know which information is correct or not so I thought Id ask here for confirmation.
I serve various background image sizes at different screen resolutions using the following type of media queries (example):
@media all and (min-width: 999px) and (max-width: 1000px)
Does this mean that there are no http requests and downloads of the image if it is below the min and over the max width? Or will the browser download the image regardless of the media query rules?