Is there any way to find unused CSS in a website?
I'm trying to clean up a project I just inherited.
|
Is there any way to find unused CSS in a website? I'm trying to clean up a project I just inherited. |
||||
|
|
|
Dust-me Selectors is a Firefox plugin that finds unused selectors. |
|||||||||||
|
|
I just ran into this and remembered your question: http://github.com/geuis/helium-css |
|||
|
|
|
There is so much that can be said about best-practice methods for CSS. I'll try to stick to the main points. Use a CSS reset. Try to remove really general CSS statements like Don't be too specific in your CSS selectors if you don't have to. You really only need to have high degrees of specificity if being in a specific section changes how the element is going to be displayed. Otherwise, to make your code for your Look for commonalities in your CSS and see if you can create reusable classes. If you have similar blocks Get in the habit of making areas in your CSS have an auto-width (can be done implicitly) so that they grow to the width of your containers. This makes it incredibly easier to move sections from a narrow portion of your website to a wide portion of your website without having to change any code. Commenting your code and breaking it down into sections usually helps make code more readable. You'd be surprised how much cleaner your code looks when you implement more powerful CSS selectors. Most of them are cross-browser compatible (Internet Explorer 7 and later).
|
||||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.