Skip to content

Commit ebca3ab

Browse files
committed
Update README
1 parent 23a2cdc commit ebca3ab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ In the following HTML file, completion will suggest for all `id` and `class` att
3838
display: block;
3939
}
4040
41-
.embedded {
41+
.internal {
4242
display: block;
4343
}
4444
</style>
4545
</head>
4646

4747
<body>
48-
<div id="content" class="container external embedded">
48+
<div id="content" class="container external internal">
4949
<div class="row">
5050
<div class="col">1 of 2</div>
5151
<div class="col">2 of 2</div>
@@ -56,15 +56,15 @@ In the following HTML file, completion will suggest for all `id` and `class` att
5656
</html>
5757
```
5858

59-
(2), (3) and (4) are equivalent and points to the same file in the root of workspace folder:
59+
(2), (3) and (4) are all equivalent and points to the `site.css` file in the root of workspace folder:
6060

6161
```css
6262
.external {
6363
display: block;
6464
}
6565
```
6666

67-
If it is not possible to specify local or remote styles within 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 foler:
67+
If it is not possible to specify local or remote styles within 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:
6868

6969
```js
7070
"css.styleSheets": [

0 commit comments

Comments
 (0)