◇◆
rules Rules (NISO JATS table model)
Defines which rules to draw between the rows and columns of an XHTML 1.1 table. (This
attribute is based on and
intended to be converted easily to the XHTML rules attribute.)
Usage/Remarks
If the @rules attribute
has not been used, the presence or absence of rules will be based on the
@border attribute:
<table border="0">...</table>
OPTIONAL on element: <table>
Value | Meaning |
---|---|
all | Rules on all rows and columns. |
cols | Rules between columns. |
groups | Rules between groups. |
none | No rules in table. |
rows | Rules between rows. |
Restriction | @rules is an optional attribute; there is no default. |
Tagged Sample
Horizontal rules to be displayed between a table’s rows
...
<table rules="rows">
<thead>
<tr>
<th>Color</th>
...
</tr>
</thead>
<tbody>...</tbody>
</table>
...