Answer the question
In order to leave comments, you need to log in
How to hide loading css?
Hello.
Please advise how to hide CSS file loading from PageSpeed and make it really asynchronous or postpone it.
Or just how to asynchronously load Bootstrap css ?
Thank you.
Answer the question
In order to leave comments, you need to log in
Thanks everyone, the solution turned out to be quite a crutch, I glued all the css code into one and placed it in the style tag before the closing body, and got a pagespeed score of 96 / 100.
i do like this: (in php)
<?php
echo '<style>';
require 'css/bootstrap.min.css';
echo '</style>';
?>
<style>{% include "/static/css/style.css" %}</style>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question