If you write javascript which dynamically loads CSS files on
your page, you have probably seen PageSpeed Insights complain to you
about removing render-blocking CSS. Fixing render-blocking javascript is
relatively easy: just add an
async attribute to the script, and include it before the closing body
tag, or use an async loader like Google Analytics. Fixing
render-blocking CSS is a little trickier.