Contact Number
Email Address

tbody

tbody

Definition and Usage

The <tbody> tag is used to group the body content in an HTML table. The <tbody> element is used in conjunction with the <thead> and <tfoot> elements to specify each part of a table (body, header, footer). Browsers can use this information to enable scrolling of the table body independently of the header and footer - particuarly useful for large tables. The <tbody> tag must be used in the following context: As a child of a <table> element, after any <caption>, <colgroup>, and <thead> elements. The HTML <tbody> tag is used for grouping table rows. Specifically, it represents a block of rows that consist of a body of data for the parent <table> element.

Syntax

<tbody></tbody>