You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-7Lines changed: 6 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Missing CSS support for HTML documents.
13
13
14
14
In the following HTML file, completion will suggest for all `id` and `class` attributes.
15
15
16
-
#### **`index.html`**
16
+
**`index.html`**
17
17
```html
18
18
<!DOCTYPE html>
19
19
<html>
@@ -52,21 +52,20 @@ In the following HTML file, completion will suggest for all `id` and `class` att
52
52
53
53
</html>
54
54
```
55
+
1. External style sheet which will be fetched from `href`.
56
+
2. Local style sheets which are all equivalent and points to `site.css` file in the root of workspace folder.
57
+
3. Embedded style tag.
55
58
56
-
#### **`site.css`**
59
+
**`site.css`**
57
60
```css
58
61
.external {
59
62
display: block;
60
63
}
61
64
```
62
65
63
-
1. External style sheet which will be fetched from `href`.
64
-
2. Local style sheets which are all equivalent and points to `site.css` file in the root of workspace folder.
65
-
3. Embedded style.
66
-
67
66
If it is not possible to specify local or remote styles within each HTML file, they can be specified in VS Code settings per workspace folder in `.vscode/settings.json` and will suggest for all HTML files within that workspace folder:
0 commit comments