I'm thinking of two options to load my css and wondering which one is the most efficient one?
Using small bits of css files and import them into a single main styles.css and use this file in the head section.
Using a common css file that contains code that applies to all pages and then create separate page-specific css files and include them in the page that need them. For example, the css for a contact page will only be used on the contact page so no need to load those css in other pages.
So which way would you go? Thanks