Overview
Combining external stylesheets into as few files as possible cuts down on RTTs and delays in downloading other resources.
Combining external stylesheets into as few files as possible cuts down on RTTs and delays in downloading other resources.
As with external JavaScript, multiple external CSS files incurs additional RTT overhead. If your site contains many CSS files, combining them into fewer output files can reduce latency. We recommend a maximum of 3, but preferably 2, CSS files.
It often makes sense to use many different CSS files during the development cycle, and then bundle those CSS files together as part of your deployment process. See below for recommended ways of partitioning your files. You would also need to update all of your pages to refer to the bundled files as part of the deployment process.