Description
This element contains one entire row of table cells. This element is used in all three segments of a table grid (headers, footnotes and body):
<table>
  <tgroup cols="3">
    ...
    <thead>
      <row>...</row>
      <row>...</row>
    </thead>
    <tfoot>
      <row>...</row>
    </tfoot>
    <tbody>
      <row>...</row>
      <row>...</row>
      <row>...</row>
    </tbody>
  </tgroup>
</table>
Parent Elements
The elements listed below may directly contain this element. They are "parent" elements. Elements in referenced groups are included, up to two levels of group nesting.
Parent elements: <thead> <tfoot> <tbody>
Model Diagram
The DTD model for this element:
--+(sequence)
  |  
 entry (repeatable) -- (TEXT and elements)
DTD Definition
The DTD contains the following element and attribute definitions (note that embedded links are to definitions within the DTD page of this guide):
<!ELEMENT row                            (entry+)>
<!ATTLIST row
                rowsep                   NMTOKEN  #IMPLIED 
                valign                   (top | middle | bottom)  #IMPLIED 
               %a-group-CommonIDAttrs;>
.
Defined in DTD section Block-level Content : Tables
General Attributes (shared with other elements)
Common Optional ID Attributes (a-group-CommonIDAttrs)
Local Attributes (defined for this element alone)
Attribute: rowsep (Row Separator)
Description
This attribute specifies whether or not a line needs to be drawn between the rows ("0" means no, "1" means yes). By default, lines should not be drawn. Values larger than "1" should be treated as if it were "1". This attribute overrides the attributes with the same name in higher level structures.
Note that these lines should not be drawn beneath entries in the final row. The frame attribute should be used instead.
Specification
This attribute is not required. It holds a single name token (initial character must be a letter, '_' or ':', and remaining characters must be letters or digits or '_', ':', '-', or '.').
DTD Definition
                rowsep                   NMTOKEN  #IMPLIED 
.
Attribute: valign (Vertical Alignment)
Description
This attribute specifies a vertical alignment for all cells in the row.
Specification
This attribute is not required. The allowed values are "top", "middle" and "bottom".
DTD Definition
                valign                   (top | middle | bottom)  #IMPLIED 
.