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
Hello,
Since I'm using amp, I have to put the css between <style> tags.
<style>
This is the original css:
<style> .foo { background: linear-gradient(to right, red, green, blue) } </style>
This is the compressed one:
<!-- 'to right' minified as 'toright' --> <style>.foo{background:linear-gradient(toright,red,green,blue)}</style>
Should this issue be on the html_press repo? Is there a way to fix this?
Thank you!
The text was updated successfully, but these errors were encountered:
Also spaces within inline css calc() should not be deleted
height: calc(100vh - 6px);
becomes
height: calc(100vh-6px);
which is invalid
Sorry, something went wrong.
This hack works
calc(calc(100vh) - calc(6px));
No branches or pull requests
Hello,
Since I'm using amp, I have to put the css between
<style>
tags.This is the original css:
This is the compressed one:
Should this issue be on the html_press repo? Is there a way to fix this?
Thank you!
The text was updated successfully, but these errors were encountered: