Skip to content

Commit b3fbb9c

Browse files
committed
minor fixes
1 parent 7b42ecc commit b3fbb9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

2-ui/1-document/01-browser-environment/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ document.body.style.background = "red";
4949
setTimeout(() => document.body.style.background = "", 1000);
5050
```
5151

52-
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>.
52+
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).
5353

5454
```smart header="DOM is not only for browsers"
5555
The DOM specification explains the structure of a document and provides objects to manipulate it. There are non-browser instruments that use DOM too.

0 commit comments

Comments
 (0)