0

I understand that CSS style sheets are cached in browser. My question is, why? CSS is usually only kilobytes, so what is the benefit of caching something that small when it can prove so bothersome to update? My only guess is that browsers like CSS to be loaded before HTML so unstyled elements are not flashed.

2
  • 3
    High speed, low latency. The less HTTP requests you make, the faster page is. Commented Jan 24, 2014 at 14:19
  • So tl;dr are you basically saying that it's not the CSS that the browser takes a while downloading, but the HTTP request it has to make that can make a webpage slow? Commented Jan 24, 2014 at 14:23

2 Answers 2

2

Every CSS file is a HTTP request. Many requests means slower page loading. Browsers developers cannot be sure that the websites developers will create one minimized CSS file with less useless lines. Often websites contains dozens of css files, sometimes there are not kilobytes but megabytes. So the CSS caching part is really in service of websites developers.

Sign up to request clarification or add additional context in comments.

Comments

1

everything with a cache header can be cached. This is an overview of all headers.

If the css is used on every site of a domain, you have only one download. This save you bandwidth and the bandwidth of the domain owner

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.