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
:where(& > .bar)
For the following input,
.foo { :where(& > .bar) { color: red; } }
esbuild outputs
.foo{:where(>.bar){color:red}}
(esbuild try).
But this output is invalid because :where does not allow relative selectors.
:where
Original issue: vitejs/vite#18974
:where()
:is()
<forgiving-selector-list>
<forgiving-relative-selector-list>
The text was updated successfully, but these errors were encountered:
FI, Important issue for the next version of tailwind, tailwind 4 when built with vite down the stream.
Link to vite issue Link to tailwind issue
Sorry, something went wrong.
No branches or pull requests
For the following input,
esbuild outputs
(esbuild try).
But this output is invalid because
:where
does not allow relative selectors.Original issue: vitejs/vite#18974
reference
:where()
spec:is()
spec::is()
has the same syntax with:where()
<forgiving-selector-list>
and not<forgiving-relative-selector-list>
The text was updated successfully, but these errors were encountered: