I've incorporated several newer CSS3 properties in my stylesheet, but I'm concerned that the minification tool I'm currently utilizing may not be capturing all of these properties:
.big-blue-button:hover {
text-decoration: none;
background: #0994d2;
background: -moz-linear-gradient(#0994d2,#0db5e0);
background: -webkit-linear-gradient(#0994d2,#0db5e0);
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0994d2',endColorstr='#0db5e0')";
}
--> with minification
.big-blue-button:hover {
text-decoration: none;
background: 0;
-ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0994d2',endColorstr='#0db5e0');
}
Does anyone have recommendations for a reliable minification script that supports all the latest CSS properties? It's essential that this process be executed from a script rather than manually pasting the code. Any suggestions?