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
When handling a calc() function in CSS, Minify appears to be stripping the unit of measurement.
This means that: h1 { font-size: calc(0px / 2); }
h1 { font-size: calc(0px / 2); }
is becoming:
h1{font-size:calc(0/2)}
Which generates a division by zero error, because it's looking at it as a number and not a measurement.
The text was updated successfully, but these errors were encountered:
0/2 is division of zero, not division by zero :)
0/2
Sorry, something went wrong.
No branches or pull requests
When handling a calc() function in CSS, Minify appears to be stripping the unit of measurement.
This means that:
h1 { font-size: calc(0px / 2); }
is becoming:
h1{font-size:calc(0/2)}
Which generates a division by zero error, because it's looking at it as a number and not a measurement.
The text was updated successfully, but these errors were encountered: