In terms of performance and maintainability would it be nice to have 2 files of css
on the page, one for the content that appears before the fold and another for the content that appears after the fold?
Type:
<link href="above.css"> (20kb)
--------------------------------
<link href="below.css"> (200kb)
As the requests are linearly the rendering of the top would be the fastest correct? The user would see the page being assembled the faster I believe, but how do I load the second .css
. When starting loading the below.css
for example can it interfere with the images that will be loaded at the top of the fold? Or will it be first mounted 100% from the top and only then will the bottom loading begin?
Since two requests will be made, can I lose performance or be completely irrelevant?
Or would it be better to everything in a style sheet just style.css
(above.css + below.css) and ready?