<tbody>
The HTML Table Body Element (<tbody>
) defines one or more <tr>
element data-rows to be the body of its parent <table>
element (as long as no <tr>
elements are immediate children of that table element.) In conjunction with a preceding <thead>
and/or <tfoot>
element, <tbody>
provides additional semantic information for devices such as printers and displays. Of the parent table's child elements, <tbody>
represents the content which, when longer than a page, will most likely differ for each page printed; while the content of <thead>
and <tfoot>
will be the same or similar for each page printed. For displays, <tbody>
will enable separate scrolling of the <thead>
, <tfoot>
, and <caption>
elements of the same parent <table>
element. Note that unlike the <thead>
, <tfoot>
, and <caption>
elements however, multiple <tbody>
elements are permitted (if consecutive), allowing the data-rows in long tables to be divided into different sections, each separately formatted as needed.
https://developer.mozilla.org/en/docs/Web/HTML/Element/tbody