-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
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
[v4] Class within square brackets [] is ignored #16189
Comments
Not sure if this is related, but we noticed a similar issue when extracting classes from Clojure: This works: [:div {:class ["p-2"]} This also: [:div {:class ["p-2" "text-green"]} But this one fails to detect [:div {:class ["p-2"
"text-green"]} A workaround is to ensure the line does not end with [:div {:class ["p-2" ;; Workaround for Tailwind
"text-green"]} Unfortunately, another idiom commonly used in Clojure does not work either: [:div.p-2] ;; does not detect "p-2" as a class name Should I create a separate ticket for that? |
Came across this while searching for "clojure" in the issues. Just wanted to share our experience. We’re facing the same challenges as @ferdinand-beyer upgrading to v4 in our Clojure projects. We primarily use the shorthand syntax like I really appreciate all the effort that went into v4, it looks great, and we’d love to use it. If there’s any way I can assist with troubleshooting or testing, please let me know! |
Hello guys, i'm facing the same problem while building a custom react dashboard. i was using the class grid-cols-[220px,_1fr], but it seems that Tailwind no longer recognizes the square bracket syntax properly. The class simply doesn't apply, and the grid falls back to a single-column layout.
This seems to be a reliable workaround for now. Hope it helps others facing the same issue! |
What version of Tailwind CSS are you using?
4.0.3
What build tool (or framework if it abstracts the build tool) are you using?
tailwind-cli
What version of Node.js are you using?
v22.13.1
What browser are you using?
N/A
What operating system are you using?
Windows
Describe your issue
I have a Blazor project where some classes are in c#.
This works fine and generates the correct output, except for a specific case where my classes are wrapped in square braces.
The following code doesn't generate the expected gap-y-4, gap-y-6, and gap-y-8 classes in the output.
If I remove the square brackets, then the expected classes are generated in the output.
If I put a space between the opening bracket ( [ ) and CssClass, then also the expected classes are generated in the output.
If I change the word "CssClass" to be lowercase, then also the expected classes are generated in the output.
The text was updated successfully, but these errors were encountered: