<colgroup>

Table Column Group (NISO JATS table model) (表の列グループ (NISO JATS 表モデル)

表内の一組の列 (<col> 要素)、を記述を格納するコンテナ要素。または表内に <colgroup> が 1 つだけの場合は、全ての列の記述を格納するコンテナ要素。<colgroup> にある属性は、<col> で上書きされないかぎり、グループ内の全ての列に適用されます。(この要素は、XHTML のcol 要素を元にし、それに簡単に変換できるように考えられたものです。)

属性

拡張コンテンツ・モデル

(col)*

記述方法

<col> (表の列 (NISO JATS 表モデル))、ゼロまたは 1 個以上

この要素は以下の要素内に含むことができます:

用例

...
<table-wrap id="TX0.180">
<label>Table 3</label>
<caption><p>Patient costs for institutional
care at the end of scheduled follow up</p></caption>
<table border="1">
<colgroup>
<col span="1"/>
<col align="char" char="," charoff="50%" span="1"/>
</colgroup>
<thead>
<tr>
<th>Year</th>
<th>Cost per patient</th>
</tr>
</thead>
<tbody>
<tr>
<td>1997</td>
<td>$8,250</td>
</tr>
<tr>
<td>2000</td>
<td>$31,400</td>
</tr>
<tr>
<td>2003</td>
<td>$125,600</td>
</tr>
</tbody>
</table>
</table-wrap>
...