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
aspect-ratio
auto
<ratio>
In the CSS Tree syntax docs it is defined as auto | <ratio>, but the correct syntax should be auto || <ratio>.
auto | <ratio>
auto || <ratio>
The following syntax should function as a fallback, but it currently raises a warning.
aspect-ratio: auto 3/4; aspect-ratio: 9/6 auto;
Related issue: stylelint/stylelint#8027
The text was updated successfully, but these errors were encountered:
declaration-property-value-no-unknown
I've submitted a PR to upstream, which should resolve this issue.
Sorry, something went wrong.
stroke-opacity
Resolved in this commit. 4175e97
No branches or pull requests
In the CSS Tree syntax docs it is defined as
auto | <ratio>
, but the correct syntax should beauto || <ratio>
.The following syntax should function as a fallback, but it currently raises a warning.
Related issue: stylelint/stylelint#8027
The text was updated successfully, but these errors were encountered: