-
What version of Tailwind CSS are you using? What build tool (or framework if it abstracts the build tool) are you using? postcss, Angular 20.1 What version of Node.js are you using? What browser are you using? What operating system are you using? Reproduction URL Describe your issue it generates following css with classes like .has-\[role\=checkbox\]\:w-px {
&:has(*:is(role=checkbox)) {
width: 1px;
}
} getting following syntax error with generated css:
let me know whether it is safe to ignore. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It is incorrect CSS syntax, but it's because the class name is incorrect Tailwind syntax. It should be |
Beta Was this translation helpful? Give feedback.
It is incorrect CSS syntax, but it's because the class name is incorrect Tailwind syntax. It should be
has-[[role=checkbox]]:w-px
, (double square brackets).