This commit is contained in:
Michael Gellings 2019-08-31 16:31:35 +02:00
parent 6328c5c9b1
commit 13b70adcce

View file

@ -22,7 +22,7 @@ Let's discuss them in more detail.
The topmost tree nodes are available directly as `document` properties:
`<html>` = `document.documentElement`
: The topmost document node is `document.documentElement`. That's the DOM node of the`<html>` tag.
: The topmost document node is `document.documentElement`. That's the DOM node of the `<html>` tag.
`<body>` = `document.body`
: Another widely used DOM node is the `<body>` element -- `document.body`.