Merge pull request #1571 from javascript-tutorial/paroche-patch-5
Update article.md
This commit is contained in:
commit
dcc7e48fae
1 changed files with 1 additions and 1 deletions
|
@ -285,7 +285,7 @@ Tables are a great example of that, and represent a particularly important case:
|
||||||
**The `<table>`** element supports (in addition to the given above) these properties:
|
**The `<table>`** element supports (in addition to the given above) these properties:
|
||||||
- `table.rows` -- the collection of `<tr>` elements of the table.
|
- `table.rows` -- the collection of `<tr>` elements of the table.
|
||||||
- `table.caption/tHead/tFoot` -- references to elements `<caption>`, `<thead>`, `<tfoot>`.
|
- `table.caption/tHead/tFoot` -- references to elements `<caption>`, `<thead>`, `<tfoot>`.
|
||||||
- `table.tBodies` -- the collection of `<tbody>` elements (can be many according to the standard).
|
- `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).
|
||||||
|
|
||||||
**`<thead>`, `<tfoot>`, `<tbody>`** elements provide the `rows` property:
|
**`<thead>`, `<tfoot>`, `<tbody>`** elements provide the `rows` property:
|
||||||
- `tbody.rows` -- the collection of `<tr>` inside.
|
- `tbody.rows` -- the collection of `<tr>` inside.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue