We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! Look at this test:
.a { b: (0.1em) (000.001) (010.00) (.0s) }
After cleancss we get:
.a{b:(0.1em) (000.001) (010) (s)}
What about the removing of all unnecessary nulls and spaces between the values?
0.1em => .1em 000.001 => .001 010.00 => 10
The text was updated successfully, but these errors were encountered:
If you would be so kind to give us a real-world example of a cross-browser CSS code in action we would be glad to fix it!
Sorry, something went wrong.
Here it is
a { color: rgba(0, 0, 0, .0) }
is minimized to
a{color:rgba(0,0,0,)}
It is invalid, isn't it?
Moreover cleancss replaces .0, wherever it is met, on '' (empty string)
cleancss
.0
''
Or, for example, such kind of code
h {font-size:040px;}
h{font-size:040px}
It is valid , yes! But it is possible to replace 040px on 40px and won one symbol in minimization!
040px
40px
Such values can be minimized too
-0px => 0 -0 => 0 0.0em => 0 etc.
69e2e33
No branches or pull requests
Hi!
Look at this test:
After cleancss we get:
What about the removing of all unnecessary nulls and spaces between the values?
The text was updated successfully, but these errors were encountered: