2
In terms of performance and maintainability it would be interesting to have 2 files css
on the page, one for the content that appears before the fold and one for the content that appears after the fold?
Type:
<link href="above.css"> (20kb)
--------------------------------
<link href="below.css"> (200kb)
Since the requests are linear, would the upper rendering be faster? The user would see the page being mounted more quickly believe, but as it turns the loading of the second .css
. When to start loading the below.css
For example, can it interfere with the images that will be carried at the top of the fold? Or it will be mounted first 100% of the top and only then begins loading the bottom?
Since two requests will be made I can lose performance or it would be completely irrelevant?
Or would it be better minify all in one style sheet only style.css
(above.css + Below.css) and ready?