Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a property named "rowgroup" like "colgroup" in XHTML?

Tags:

html

xhtml

The following w3c documents mentions rowgroup

  • http://www.w3.org/TR/html401/struct/tables.html#h-11.2.6
  • http://www.w3.org/TR/html401/struct/tables.html#rowgroups

<!ENTITY % Scope "(row|col|rowgroup|colgroup)">

Is there such an attribute or property?

like image 669
Jitendra Vyas Avatar asked Mar 22 '10 07:03

Jitendra Vyas


1 Answers

Table rows may be grouped into a table head, table foot, and one or more table body sections, using the THEAD, TFOOT and TBODY elements, respectively. This division enables user agents to support scrolling of table bodies independently of the table head and foot. When long tables are printed, the table head and foot information may be repeated on each page that contains table data.

The table head and table foot should contain information about the table's columns. The table body should contain rows of table data.

When present, each THEAD, TFOOT, and TBODY contains a row group. Each row group must contain at least one row, defined by the TR element.

Source: http://www.w3.org/TR/html401/struct/tables.html#h-11.2.3

like image 103
muruga Avatar answered Sep 21 '22 17:09

muruga