Skip to content

Commit 580221f

Browse files
authored
Update article.md
Adding some mention of implicit `<tbody>` element. Comes up later in Modifying the Document task #10 solution.
1 parent 9e7235f commit 580221f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: 2-ui/1-document/03-dom-navigation/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ Tables are a great example of that, and represent a particularly important case:
285285
**The `<table>`** element supports (in addition to the given above) these properties:
286286
- `table.rows` -- the collection of `<tr>` elements of the table.
287287
- `table.caption/tHead/tFoot` -- references to elements `<caption>`, `<thead>`, `<tfoot>`.
288-
- `table.tBodies` -- the collection of `<tbody>` elements (can be many according to the standard).
288+
- `table.tBodies` -- the collection of `<tbody>` 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).
289289
290290
**`<thead>`, `<tfoot>`, `<tbody>`** elements provide the `rows` property:
291291
- `tbody.rows` -- the collection of `<tr>` inside.

0 commit comments

Comments
 (0)