kevin-montrose / More

A CSS Compiler
Microsoft Public License
42 stars 4 forks source link

Blocks with same selector are not collapsed #4

Closed kevin-montrose closed 12 years ago

kevin-montrose commented 12 years ago

img {width: 50px; } img {height: 50px; }

should collapse to

img { width: 50px; height: 50px; }

and similar.