tbody

< html‎ | elements
Jump to: navigation, search

tbody



Summary

The tbody tag is used to group the body content in an HTML table.


Overview Table

DOM Interface HTMLTableSectionElement

Examples

This example uses the TBODY element with the TABLE, TD, THEAD, and TR elements to create a table with the first row in the table head and the second row in the table body.

HTML

<TABLE>
  <THEAD>
    <TR>
      <TD>
        This text is in the THEAD.
      </TD>
    </TR>
  </THEAD>
  <TBODY>
    <TR>
      <TD>
        This text is in the TBODY.
      </TD>
    </TR>
  </TBODY>
</TABLE>

Notes

Remarks

Valid tags within the TBODY element include:

  • TD
  • TH
  • TR

The TBODY element is exposed for all tables, even if the table does not explicitly define a TBODY element. The table object and its associated elements have a separate table object model, which uses different methods than the general object model. For more information on the table object model, see Building Tables Dynamically. Windows Internet Explorer 8 will only render tables up to 1000 columns. To force Windows Internet Explorer 7 rendering mode, see How Do I Take Advantage of the New Features in Internet Explorer 8.

Standards information


Members

The tBody object has these types of members:

  • [#events Events]
  • [#methods Methods]
  • [#properties Properties]


Events

The tBody object has these events. {

Compatibility

Desktop

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support ? ? ? ? ?

Mobile

Feature Android BlackBerry Chrome for mobile Firefox Mobile (Gecko) IE Mobile Opera Mobile Opera Mini Safari Mobile
Basic support ? ? ? ? ? ? ? ?

See also

Related pages (MSDN)

  • Building Tables Dynamically

This article contains content originally from external sources.

Portions of this content come from the Microsoft Developer Network: [Windows Internet Explorer API reference Article]