Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS css minification Re: css minification

#120265
Mottie
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`.