HOME > HTML辞典(テーブル) | |||||||||||
|
HTML辞典
|
テーブルテーブルを作る
テーブル・・・<table>〜</table>
横1列・・・<tr>〜</tr>
セル1つ・・・<td>〜</td>
テーブルの位置を設定する
<table align="位置">〜</table>
位置・・・left、right、center
テーブルのサイズを設定する
<table width="幅" height="高さ">〜</table>
セルのサイズを設定する
<td width="幅" height="高さ">〜</td>
枠線の幅を設定する
<table border="サイズ">〜</table>
枠線の色を設定する
<table border="サイズ" bordercolor="色">〜</table>
テーブルの背景色を設定する
<table bgcolor="色">〜</table>
セルの背景色を設定する
<tr bgcolor="色">〜</tr>
<td bgcolor="色">〜</td>
テーブルの背景画像を設定する
<table background="パス">〜</table>
セルの背景画像を設定する
<tr background="パス">〜</tr>
<td background="パス">〜</td>
セル内の改行を禁止する
<tr nowrap>〜</tr>
<td nowrap>〜</td>
セルを縦に連結する
<td rowspan="連結数">〜</td>
セルを横に連結する
<td colspan="連結数">〜</td>
|
スポンサードリンク
| |||||||||