Autosuggest Tailwind CSS class IntelliSense
Published at
This TIL is more than a year old. Some details may have changed.
By default, the Tailwind CSS IntelliSense extension didn't give automatic IntelliSense when typing. Adding the following to settings.json fixed this.
"editor.quickSuggestions": {
"strings": true
},
"css.validate": false,
"editor.inlineSuggest.enabled": true