tags:

views:

38

answers:

1

Hi, I'm looking for a css optimizer. It should be a php script so I can install on my host or online services. I need some feature like below. Any recommended?

from:

margin-top:5px;
margin-right:10px;
margin-bottom:8px;
margin-left:2px;

to:

=> margin:5px 10px 8px 2px;

from:

-moz-border-radius-topleft: 5px;

to:

=> -moz-border-radius-topleft: 5px;
=> -webkit-border-top-left-radius: 5px;
+2  A: 

CSSmin?

Marc B