Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looking for a CSS optimizer (php script or online services)

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;
like image 910
StoneHeart Avatar asked May 01 '26 01:05

StoneHeart


1 Answers

CSSmin?

like image 140
Marc B Avatar answered May 02 '26 16:05

Marc B