GitHub
github.com › tailwindlabs › tailwindcss-intellisense
GitHub - tailwindlabs/tailwindcss-intellisense: Intelligent Tailwind CSS tooling for Visual Studio Code · GitHub
Intelligent Tailwind CSS tooling for Visual Studio Code - tailwindlabs/tailwindcss-intellisense
Starred by 3.4K users
Forked by 243 users
Languages TypeScript 85.7% | JavaScript 14.3%
GitHub
github.com › tailwindlabs › tailwindcss-intellisense › releases
Releases · tailwindlabs/tailwindcss-intellisense
Intelligent Tailwind CSS tooling for Visual Studio Code - tailwindlabs/tailwindcss-intellisense
Author tailwindlabs
Videos
Tailwind CSS
tailwindcss.com › docs › editor-setup
Editor setup - Getting started - Tailwind CSS
Cursor is an AI-native code editor with features like context-aware autocomplete and built-in coding agents. Since it supports VS Code extensions, all of the Tailwind CSS tooling you're already familiar with works out of the box – including our official Tailwind CSS IntelliSense extension and the Prettier plugin for class sorting.
GitHub
github.com › tailwindlabs › tailwindcss-intellisense › issues › 1053
When using Tailwind CSS IntelliSense in VS Code making it very slow to provide autocomplete suggestions · Issue #1053 · tailwindlabs/tailwindcss-intellisense
September 18, 2024 - When using Tailwind CSS IntelliSense in VS Code making it very slow to provide autocomplete suggestions#1053
Author giorgitchanturidze
GitHub
github.com › tailwindlabs › tailwindcss-intellisense › blob › main › packages › vscode-tailwindcss › package.json
tailwindcss-intellisense/packages/vscode-tailwindcss/package.json at main · tailwindlabs/tailwindcss-intellisense
Intelligent Tailwind CSS tooling for Visual Studio Code - tailwindlabs/tailwindcss-intellisense
Author tailwindlabs
GitHub
github.com › tailwindlabs › tailwindcss › issues › 11529
Vscode tailwindcss intellisense not working · Issue #11529 · tailwindlabs/tailwindcss
July 2, 2023 - I suspect the problem is the tailwind config file, currently my config file is written in typescript whereas the extension supports config file in javascript. In case I change the config file to javascript the intellisense starts working.
Author Amrender-Singh
Top answer 1 of 16
197
Its actually a pretty simple fix. open your settings.json file then add this to get the intellisense working on all files
"tailwindCSS.includeLanguages": {
"html": "html",
"javascript": "javascript",
"css": "css"
},
"editor.quickSuggestions": {
"strings": true
}
2 of 16
120
I'm using tailwindcss in a react app. Tailwindcss Intellisense plugin was not working in my VSCode but then i installed HTML CSS Support extension and now i am getting suggestions of classes.
HTML CSS Support

GitHub
github.com › tailwindlabs › tailwindcss-intellisense › issues › 576
Tailwind CSS Intelisense not working on VSCode · Issue #576 · tailwindlabs/tailwindcss-intellisense
July 11, 2022 - hi, I have problems with the Tailwind CSS Intelisense on VSCode. the issue I'm seeing is that the plugin thinks that the ' in tailwind.config.js' is part of .js', which causes it to have issues recognising my tailwind.config.js file. Tai...
Author dariusKoh
Top answer 1 of 5
36
This is a kind of work around:
Just create a file tailwind.config.js in root directory of project. And it will work as charm.
Even if there is no content inside the file, the Tailwind intellisense will work while using Play CDN of tailwind.
2 of 5
4
Create the file "tailwind.config.js" in the root directory worked!
GitHub
github.com › tailwindlabs › tailwindcss-intellisense › issues › 728
Intellisense in VS Code not showing color and code preview · Issue #728 · tailwindlabs/tailwindcss-intellisense
March 10, 2023 - (1) When i enter the tailwind classes, previously i could hover and see the underlying css code, now it does not show (2) When i enter color styling using tailwind css class ("text-green-500"), previously i could the see the color preview not no preview shows.
Author lexman1958
GitHub
github.com › tailwindlabs › tailwindcss-intellisense › issues › 1209
[Feature]: Provide VS Code Autocompletion for Tailwind's Generated CSS Variables · Issue #1209 · tailwindlabs/tailwindcss-intellisense
February 15, 2025 - So far, I've been amazed and very appreciative of Tailwind's abilities to provide autocomplete for its utility classes. And with the right VS Code configuration, you can accomplish even more! I think the main limitation right now is auto...
Author ITenthusiasm
GitHub
github.com › tailwindlabs › tailwindcss-intellisense › issues
Issues · tailwindlabs/tailwindcss-intellisense
Intelligent Tailwind CSS tooling for Visual Studio Code - Issues · tailwindlabs/tailwindcss-intellisense
Author tailwindlabs
GitHub
github.com › tailwindlabs › tailwindcss › discussions › 6705
[IntelliSense] How can I turn on Tailwind-Intellisense sugesstions for VSCode in rust (*.rs) files? · tailwindlabs/tailwindcss · Discussion #6705
Also, I turned off all my extensions and left only tailwindcss-intellisense on. Still no luck! Beta Was this translation helpful? Give feedback. ... There was an error while loading. Please reload this page. Something went wrong. There was an error while loading. Please reload this page. ... There was an error while loading. Please reload this page. ... Something went wrong. There was an error while loading. Please reload this page. ... I have checked VSCode version and tailwind extension, and they are all updated to the latest versions.
Author tailwindlabs
GitHub
github.com › tailwindlabs › tailwindcss › discussions › 15132
[v4] VSCode extension not working when using only @theme directive · tailwindlabs/tailwindcss · Discussion #15132
November 23, 2024 - That's technically not a fix... as long as there's a tailwind.config file, the intellisense works. But it kinda defeats the purpose of having a css-only config. The point is, we're using code-generation for some utilities, spacing, different measurements, effects etc...
Author tailwindlabs