From 580221f6fbebdbe72920a54c7d79b2a0e4bd601d Mon Sep 17 00:00:00 2001 From: Peter Roche <46547072+paroche@users.noreply.github.com> Date: Sun, 3 Nov 2019 22:46:29 -0700 Subject: [PATCH] Update article.md Adding some mention of implicit `` element. Comes up later in Modifying the Document task #10 solution. --- 2-ui/1-document/03-dom-navigation/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/1-document/03-dom-navigation/article.md b/2-ui/1-document/03-dom-navigation/article.md index 41076356..332f5782 100644 --- a/2-ui/1-document/03-dom-navigation/article.md +++ b/2-ui/1-document/03-dom-navigation/article.md @@ -285,7 +285,7 @@ Tables are a great example of that, and represent a particularly important case: **The ``** element supports (in addition to the given above) these properties: - `table.rows` -- the collection of `` elements of the table. - `table.caption/tHead/tFoot` -- references to elements ``, ``. -- `table.tBodies` -- the collection of `` elements (can be many according to the standard). +- `table.tBodies` -- the collection of `` elements (can be many according to the standard, but there will always be at least one -- even if it is not in the source HTML, the browser will put it in the DOM). **``, ``, ``** elements provide the `rows` property: - `tbody.rows` -- the collection of `` inside.
`, `