When do background images from a style sheet get downloaded?
When a user downloads a style sheet, do all background images specified in that style sheet get downloaded as well? Or, are background ima开发者_StackOverflowges only downloaded as needed based on the CSS rules that apply to the current page?
They only get downloaded as they are needed. To verify, use Chrome Debugger tools network tab and watch what gets requested.
Images, scripts, and stylesheets are downloaded as needed.
精彩评论