pentest-distro-builder/filesystem/root/.vscode/extensions/ecmel.vscode-html-css-0.2.0/README.md

55 lines
1.2 KiB
Markdown
Raw Normal View History

2018-10-17 14:11:16 -06:00
# Visual Studio Code CSS Support for HTML Documents
Missing CSS support for HTML documents.
## Features
- Class attribute completion.
- Id attribute completion.
- Supports Zen Coding completion for class and id attributes.
- Scans workspace folder for css and scss files.
- Supports remote css files.
- Uses [vscode-css-languageservice](https://github.com/Microsoft/vscode-css-languageservice).
## Supported Languages
- html
- laravel-blade
- razor
- vue
- pug
- jade
- handlebars
- php
- twig
- md
- nunjucks
- javascript
- javascriptreact
## Remote Style Sheets
Remote style sheets can be specified in VS Code settings:
```
"css.remoteStyleSheets": [
"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css"
]
```
## Style Sheet File Extensions
By default, `css` and `scss` files in the project are parsed. You may configure this in VS Code Settings
Remote style sheets can be specified in VS Code settings:
```
"css.fileExtensions": [ "css", "scss"]
```
## Installation
[Visual Studio Code Marketplace](https://marketplace.visualstudio.com/items?itemName=ecmel.vscode-html-css)
## Usage
You can view a list of attributes via `ctrl + space`.