minify - Smart CSS minifier? -


is there css minifier that's smart enough transforms turning this:

.caret {     border-left:4px solid transparent;     border-right:4px solid transparent;     border-top:4px solid #000;     border-bottom:0; } 

into this:

.caret {     border:4px solid transparent;     border-top-color:#000;     border-bottom:0; } 

cssnano trick. make part of gulp process. you've asked , more.

http://cssnano.co/optimisations/


Comments

Popular posts from this blog

routing - AngularJS State management ->load multiple states in one page -

python - GRASS parser() error -

post - imageshack API cURL -