ホームページは難しくない ちょこっとHTML Lesson7
<colgroup ○> 〜 </colgroup> |
||||||||
縦の列をグループ分けしてみましょう。 指定する属性と値は次のとおりです。
例えば こんな感じです。 |
1列目 2列目 3列目 1列目 2列目 3列目 1列目 2列目 3列目 1列目は width="100" で指定しています。
2列目は width="200" で 右揃えにしています。
3列目は width="200" で 右揃えにしています。
HTMLソースは こんな感じです。
<table border="1">
<colgroup width="100"></colgroup>
<colgroup span="2" width="200" align="right"></colgroup>
<tr>
<td>1列目</td>
<td>2列目</td>
<td>3列目</td>
</tr>
<tr>
<td>1列目</td>
<td>2列目</td>
<td>3列目</td>
</tr>
<tr>
<td>1列目</td>
<td>2列目</td>
<td>3列目</td>
</tr>
</table>
ホームページは難しくない ちょこっとHTML Lesson7