Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Should I inline all CSS files programmatically to optimize page load speed?

Google PageSpeed often suggests to optimize CSS delivery. It occurred to me that it would reduce network round trips to inline all the CSS like this:

<style type="text/css">      @{          var bootstrap = File.ReadAllText(Server.MapPath("bootstrap.min.css"));         var bootstrapTheme = File.ReadAllText(Server.MapPath("theme.min.css"));         var fontAwesome = File.ReadAllText(Server.MapPath("font-awesome.min.css"));         var bigfont = File.ReadAllText(Server.MapPath("bigfont.min.css"));         var bigfontPrint = File.ReadAllText(Server.MapPath("bigfont-print.min.css"));     }      @Html.Raw(bootstrap)     @Html.Raw(bootstrapTheme)     @Html.Raw(fontAwesome)     @Html.Raw(bigfont)     @Html.Raw(bigfontPrint)  </style> 

This seems to be a reasonable solution to the problem of slow page loads and has increased my PageSpeed score to 95 from 88.

Putting code-style aside for the moment, what technical reasons, if any, exist for NOT in-lining all CSS in this way?

like image 344
Shaun Luttin Avatar asked Sep 28 '15 01:09

Shaun Luttin


People also ask

Does inline CSS load faster?

An inline CSS will load faster if the CSS content size downloads faster than your server would respond to an external CSS file request (considering DNS time, server latency, etc).

Why should we not use inline CSS?

One of the main reasons that inline styling is not a good choice for your application is because it does not support (or it has really poor support) for CSS features. Every application nowadays might have to end up using some selectors such as :hover , :active , :focused , etc.

Is inline CSS slower?

Yes, inline styles are technically faster than an external stylesheet because you are making one less request on top of the page but using an external stylesheet is much preferred for code maintainability.

When should inline CSS be used?

Inline CSS allows you to apply style rules to specific HTML elements. Inlining CSS means putting CSS into an HTML file instead of an external CSS. Since inline CSS allows the application of a unique style to one HTML element, its usage is limited but is beneficial for creating unique attributes.


2 Answers

Inlining all your CSS means it cannot be cached, so every single page load will contain all of the CSS required, and when you are using large libraries that can really be a lot of wasted bandwidth. For example, Bootstrap is around 120k. Note the Google link you shared specifies the following (emphasis mine):

If the external CSS resources are small, you can insert those directly into the HTML document, which is called inlining.

So a single page load may be faster but overall it's likely to be slower.

Personally I would stay away from doing that. However, one thing you can do is bundle all of your CSS into a single request (you are using MVC so that is relatively simple) so you only have to do a single extra trip to the server for your CSS and all future pages requested by the browser will not need to ask for them again.

like image 200
DavidG Avatar answered Sep 17 '22 18:09

DavidG


No one has mentioned the intended use case for this technique, which is definitely not to load 100% of your css. Rather, this technique is meant to make users think the page has loaded faster.

When we discuss making pages load faster, the real goal is generally to make the page load seem faster. From the perspective of the user experience, this is much more important than actually making the load take less time. It doesn't matter if the whole page take 500ms to load, because a human can't parse it that quickly anyway. What matters is how quickly the page appears to have loaded.

So the appropriate usage of this technique is to load, immediately, the absolutely essential css to make the page render properly. That is, there are some css rules that make the images be the right size, that make things float correctly, that avoid that horrible appearance of page content jumping around the page while the facebook SDK finishes its business. That code needs to be present in the same instant the markup is loaded. Solution: inline that critical css.

But definitely DO NOT inline all of the css. There can be another 100kb that loads later, if that css only styles content that is loading asynchronously anyway. But if there is page structure that must be in the correct form after 25ms, that css should be inlined.

like image 25
Seth Battin Avatar answered Sep 17 '22 18:09

Seth Battin