Is it feasible to enhance the critical rendering path (like Google and Facebook) while utilizing Bootstrap 3?
Facebook opted for inlining styles connected to the header and sidebars. Meanwhile, Google inlined all styles since they have minimal styles for their homepage.
The challenge lies in wanting to inline header-related styles, which would include over 10 classes from Bootstrap such as container-fluid
, row
, col-lg-10
, col-lg-offset-2
, etc.
Inlining Bootstrap is not ideal due to its large file size of over 100kb.
I aim to load above-the-fold content swiftly.
Is there a strategic approach to achieve this? Any suggestions?