Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS when to inline your entire stylesheet when using critical path rendering CSS Reply To: when to inline your entire stylesheet when using critical path rendering CSS

#210161
Alen
Participant

I would think any HTML is cached just the same @shikkediel

You can’t cache HTML, you can cache a HTML version of your response on your server so that you can serve it faster of the disk instead of requesting it from a database or compiling.

But the HTML still needs to come down the pipe. And if you inline extra information, in the HTML, that too needs to be transferred on each request.

There’s nothing to load from browser cache otherwise.