This module defines the basic tabular, or alignment, structure. It is roughly parallel to the HTML model.
An alignment structure corresponding to tabular or various similar forms. The model is basically a copy of HTML4’s table.
Attributes for tabular.
= (top | middle | bottom)
which row’s baseline aligns with the container’s baseline.
the desired width of the tabular.
the spacing between rows
the spacing between columns
A container for a set of rows that correspond to the header of the tabular.
Attributes for thead.
A container for a set of rows that correspond to the footer of the tabular.
Attributes for tfoot.
A container for a set of rows corresponding to the body of the tabular.
Attributes for tbody.
A row of a tabular.
Attributes for tr.
A cell in a row of a tabular.
Attributes for td.
= nonNegativeInteger
indicates how many columns this cell spans or covers.
= nonNegativeInteger
indicates how many rows this cell spans or covers.
= (left | right | center | justify | text)
specifies the horizontal alignment of the content. The allowed values are open-ended to accomodate char:. type alignments.
specifies the desired width for the column.
= (top | middle | bottom)
how the cell contents aligns with the row’s baseline.
= text
records a sequence of t or tt, r or rr, b or bb and l or ll for borders or doubled borders on any side of the cell.
= (column | column row | row)
whether this cell corresponds to a table row or column heading or both (whether in head or foot).
Content model for td.