Subject: | Declarations like "foo:0" are removed entirely from output CSS |
Any declaration with a value of "0", with no space between the colon and
value (so "foo:0", but not "foo:1" or "foo: 0") get removed entirely from
the output.
Eg:
echo "foo{border:0;margin:1;padding: 0}" | perl -MCSS::Packer -e 'my $css
= <>; CSS::Packer::minify(\$css); print $css'
Outputs:
foo{
margin:1;
padding:0;
}