How to display all classes that have no definitions in CSS files?

Technic

New Member
Is there a tool to display/highlight all elements which have certain classes defined, but there are no css rules for this classes defined in css files?For example I have html code like:\[code\]...<div class="class_one">Some text for class one</div><div class="class_two">Some text for class two obviously</div>...\[/code\]And in .css files we have:\[code\]....class_one { color: red;}.class_three { color: magenta;}...\[/code\]In this case, if need to know all classes with no definitions inside css, I should get that "there are no class definitions for class_two". Also I should point that this tool (or whatever) shouldn't be online since I do my projects using local LAMP bundle (MAMP Pro, in my case).I hope my english isn't so bad :)
 
Back
Top