Home › Forums › CSS › css minification › Re: css minification
January 8, 2013 at 10:58 am
#120265
Member
@redhornet: The compressor should be smart enough to also recognize color names. If I plug in this css, it doesn’t compress the definitions:
#test1 { background: red; }
#test2 { background: #ff0000; }
should be:
#test1,#test2{background:red}
It uses `red` since `red` is shorter than `#f00`.