Skip to main content

html-tags.com

<tbody>

The block of rows holding the table's data.

Baseline: Widely available · Tables

When to use it

Explicitly wrap data rows; multiple tbody elements can group related row batches.

When not to

Browsers insert one implicitly, but writing it keeps the structure honest and styleable.

Example

<tbody>
  <tr><th scope='row'>Monday</th><td>18</td></tr>
  <tr><th scope='row'>Tuesday</th><td>25</td></tr>
</tbody>
Source — this snippet needs a fuller context to render.

Authoritative references