Is there a tool anywhere that will combine selectors with identical declarations?
Trivial example:
.class1 { color: #345; font-size: 1em; }
.class2 { color: #345; font-size: 2em; }
/* converted to */
.class1, .class2 { color: #345; }
.class1 { font-size: 1em; }
.class2 {font-size: 2em; }
--
--
You received this because you are subscribed to the "Design the Web with CSS"
at Google groups.
To post: [email protected]
To unsubscribe: [email protected]
