How do you organize CSS efficiently and quickly? Do you have a tools that helps you out?
Let say you had taken over on a site with a messy structure for CSS. And you want to clean it out and orgnanize it
let say like this.
#footer { height: 300px; width: 100%; background: #666; }
#wrapper { width: 960px; margin: 0 auto; }
.boxes { width: 200px; height: 300px; }
.modules { background: #ccc; }
body { background: #fff; margin: 0; padding: 0;}
div.boxes { width: 180px; height: 250px; }
div#wrapper { background: #000; width: 940px; }
body div.boxes { width: 220px; height: 280px; }
body.about .modules { background: BADA55; }
Notice the body is nested on the middle of the CSS file - probably nothing wrong with that as long as there are not rule that override it. But I find it as an eye-sore and probably hard to maintain in the long run. The body tag belong to Generals along with p, ul, a tags
There are 3 instance of "boxes" class ".boxes", "div.boxes" body div.boxes the third one overrides the previous rules. Since they're just the same targeting specifically that same element, why not just merge them. That goes with the #wrapper id too
Next is the .modules class, There are two instance for this class. One is for the general module and the other one is targeting the module inside the about page. Since the second class is plainly overriding the general class, don't merge it.
And lastly, It should be arrange on this kind of structure.
/*Reset
--------------*/
* {...}
/*General
--------------*/
body {...}
a {...}
p {...}
h1 {...}
h3 {...}
/*Header*
--------------*/
#header {...}
#header #logo {...}
/*Content
--------------*/
#main {}
#main .comments {}
/*Footer
--------------*/
#footer {...}
#footer a {...}
#footer .copyright {...}
If you have 4000 lines it would really be pain in the a** cleaning it up alone. Should it really be done manually or there's an existing tool help me achieve this?