In my current project, I have organized all my CSS classes into separate style sheets.
The approach I am taking involves having a global.css file containing all the global styles, and then creating individual style sheets for each .aspx page that are specific to that particular file.
While I am specifically referring to ASP.NET in this context, I believe this method can be applied to any web development environment.
Is structuring CSS files in this way considered acceptable? How do others organize their CSS files, and what is the rationale behind their methods?
Thank you.
Related Question
What's the best way to organize CSS Rules