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

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -