minor fixes
This commit is contained in:
parent
7b42ecceee
commit
b3fbb9c9f4
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ document.body.style.background = "red";
|
||||||
setTimeout(() => document.body.style.background = "", 1000);
|
setTimeout(() => document.body.style.background = "", 1000);
|
||||||
```
|
```
|
||||||
|
|
||||||
Here we used `document.body.style`, but there's much, much more. Properties and methods are described in the specification: **DOM Living Standard** at <https://dom.spec.whatwg.org>.
|
Here we used `document.body.style`, but there's much, much more. Properties and methods are described in the specification: [DOM Living Standard](https://dom.spec.whatwg.org).
|
||||||
|
|
||||||
```smart header="DOM is not only for browsers"
|
```smart header="DOM is not only for browsers"
|
||||||
The DOM specification explains the structure of a document and provides objects to manipulate it. There are non-browser instruments that use DOM too.
|
The DOM specification explains the structure of a document and provides objects to manipulate it. There are non-browser instruments that use DOM too.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue