YUI-CSS-compressor-PHP-port
YUI-CSS-compressor-PHP-port copied to clipboard
Keep important comments feature doesn't work for comments inside declaration block
Input
/* test */
/*! test */
.test {
/* test */
/*! test */
color: #111;
background-color: #fff;
}
Expected output
/*! test */
.test{/*! test */ color:#111;background-color:#fff}
Actual output
/*! test */
.test{color:#111;background-color:#fff}