Missing CSS support for HTML documents.
- Class attribute completion.
- Id attribute completion.
- Supports Zen Coding completion for class and id attributes.
- Scans workspace folder for css files.
- Supports optional resource.json file for fine tuned resource selection.
- Uses vscode-css-languageservice.
- html
- laravel-blade
- razor
- vue
If a resource.json file is found in the root of the workspace, only files listed in the file will be used for class and id attribute completion.
{
"css": {
"site": [
"node_modules/bootstrap/dist/css/bootstrap.css",
"node_modules/font-awesome/css/font-awesome.css",
"node_modules/awesome-bootstrap-checkbox/awesome-bootstrap-checkbox.css",
"node_modules/select2/dist/css/select2.css",
"node_modules/select2-bootstrap-theme/dist/select2-bootstrap.css"
],
"style": [
"src/main/resources/main/css/style.css"
]
}
}