|
(1)左に列を増やしその行をすべてつなぎます。
<table border=2 align=center width=350 height=300>
<tr bgcolor="#7777ff"> ←1行目
<th width=50 rowspan=4> ←(1)新しい1列目
時<br>間<br>割<br>り
</th>
<th width=50>
★
</th> ←(2)以前の1列目
<th width=50>
月
</th> ←(3)
<th width=50>
火
</th> ←(4)
<th width=50>
水
</th> ←(5)
<th width=50>
木
</th> ←(6)
<th width=50>
金
</th> ←(7)
</tr>
・・・
(中省略)
・・・
</table>
1行目は、7列になりましたが 2行目以降の
1列目は、1行目の1列目が rowspan=4の指定で使われているので、
2行目以降は、6列の指定をします。
これを覚えていれば、何処にでも行をつなげます。
|