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
If specified normally, an empty style is generated.
<p class="font-size:clamp(1.5rem,2vw+1rem,2.25rem)">...</p>
.font-size\:clamp\(1\.5rem\,2vw\+1rem\,2\.25rem\) {}
When I wrap it with the calc() function, it works fine.
<p class="font-size:clamp(1.5rem,calc(2vw+1rem),2.25rem)">...</p>
.font-size\:clamp\(1\.5rem\,calc\(2vw\+1rem\)\,2\.25rem\) { font-size: clamp(1.5rem, 1rem + 2vw, 2.25rem); }
No response
The text was updated successfully, but these errors were encountered:
@takamoso Confirmed it was a bug.
We have to normalize font:clamp(1.5rem,2vw+1rem,2.25rem) into a valid format font:clamp(1.5rem,2vw + 1rem,2.25rem) for CSS.
font:clamp(1.5rem,2vw+1rem,2.25rem)
font:clamp(1.5rem,2vw + 1rem,2.25rem)
Will fix it later, thanks.
Sorry, something went wrong.
No branches or pull requests
Description
If specified normally, an empty style is generated.
When I wrap it with the calc() function, it works fine.
Reproduction
No response
System Informations
No response
The text was updated successfully, but these errors were encountered: