Reputation: 11
How to check if two CSS files for same classes existence, automatically.
Upvotes: 1
Views: 630
Reputation: 5885
You can use a css/html/js debugger as Firebug for Firefox.
When inspecting a specific element of a html page, the debugger shows all style properties applied to the element, why they're applied (class, id, tag, inherited) and from which css file the properties are coming.
Upvotes: 2
Reputation: 21720
There is no automatic way to do that as far as I know, but I would suggest that you use some kind of comparing tool, like BeyondCompare. It gives you a great insight of differences between two files.
Upvotes: 1