Hacker News new | ask | show | jobs
by byroot 4677 days ago
IIRC CSS downloading is not blocking until the browser have to execute some JS.
1 comments

The first CSS file on a page is blocking for all modern browsers regardless of JS or no JS.

Exceptions for:

* media queries, which are evaluated, if the CSS is not applicable it isn't downloaded

* disabled stylesheets which are ignored

(edited for formatting)