minor fixes

This commit is contained in:
Ilya Kantor 2020-06-27 12:57:42 +03:00
parent 7b42ecceee
commit b3fbb9c9f4

View file

@ -49,7 +49,7 @@ document.body.style.background = "red";
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"
The DOM specification explains the structure of a document and provides objects to manipulate it. There are non-browser instruments that use DOM too.