Search for CSS optimizer (PHP script or online services)

I am looking for a css optimizer. It must be a php script, so I can install it on my host or online services. I need a function as shown below. Any recommended?

from

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

at

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

from

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

at

=> -moz-border-radius-topleft: 5px;
=> -webkit-border-top-left-radius: 5px;
+3
source share
2 answers
+2
source

You might want to try the cssmin extension: https://github.com/c9s/pecl-cssmin

Since this is a C extension, it is super fast than a pure PHP CSSMin implementation.

0
source

Source: https://habr.com/ru/post/1760597/


All Articles