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
Right now, parser will throw even in the case of :is() pseudo-class that contains an invalid selector (even if there are other valid selectors).
:is()
That pseudo-class apparent accepts a forgiving selector list: https://developer.mozilla.org/en-US/docs/Web/CSS/:is#forgiving_selector_parsing
For example, in the following case css will still apply to valid selectors
:is(ol, ul, ??$#$@#) { color: green; }
The text was updated successfully, but these errors were encountered:
This makes sense as a new option — PRs welcome!
Sorry, something went wrong.
No branches or pull requests
Right now, parser will throw even in the case of
:is()
pseudo-class that contains an invalid selector (even if there are other valid selectors).That pseudo-class apparent accepts a forgiving selector list: https://developer.mozilla.org/en-US/docs/Web/CSS/:is#forgiving_selector_parsing
For example, in the following case css will still apply to valid selectors
The text was updated successfully, but these errors were encountered: