I am building my application which is similar to the hacker news clone in Js Deep Dive, One thing I wanted to know is that what is a better practice creating multiple CSS files for better readability, ( I've noticed this is much easier to manage then one huge CSS File ). Or just having one huge CSS file. I would really like anyones opinion, and It would also be really nice to know what teams do in the real world when handling CSS files.
#CSS multiple files or just one big file?
3 messages · Page 1 of 1 (latest)
This seems on point: https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/Organizing#break_large_stylesheets_into_multiple_smaller_ones
Thanks I'll give that a read!