frame

Frame (NISO JATS table model)

Specifies which sides of the table should be given rules, making a box or frame of lines around the table. (This attribute is based on and intended to be converted easily to the XHMTL frame attribute.)

Used on Element: <table>

ValueMeaning
aboveRule above only (top).
belowRule below only (bottom).
borderRules on all table rows and columns.
boxRules on all 4 sides.
hsidesRules on horizontal sides only (topbot).
lhsLeft side rule only.
rhsRight side rule only.
voidNo border (none).
vsidesRules on vertical sides only (sides).
Restriction@frame is an optional attribute; there is no default.

Example

...
<table frame="box" rules="all" cellpadding="5">
<tbody>
<tr valign="bottom">
<td align="left">3</td>
<td align="char" char="." charoff="35%">14.4411</td>
<td align="center">
<graphic id="g14" orientation="portrait" position="anchor" xlink:href="d14"/></td>
...</tr>
</tbody>
</table>
...