border Border (Frame) around a Table (NISO JATS table model)

Thickness, in pixels, of the border to draw around the table. A value of “0” indicates that the table has no border. (This attribute is based on and intended to be converted easily to the XHTML border attribute.)

Usage/Remarks

Supplying the @border attribute without specifying a value indicates that the table has a border of the application’s default thickness.

Best Practice

Although the Tag Set can enforce only that this attribute contain any text, numbers, or special characters, best practice is to constrain this value to a counting number (positive integer).
OPTIONAL on element: <table>
Value Meaning
Counting number Thickness, measured in pixels, of the border around the table.
Restriction @border is an optional attribute; there is no default.
Tagged Sample

A table with a one-inch border

...
<table border="1">
 <colgroup>
  <col span="1"/>
  <col align="char" char="," charoff="50%" span="1"/>
 </colgroup>
 ...
</table>
...