<tbody>タグは、テーブルボディのスタイルを定義するために使用されます。
Alignは水平方向のアライメントを表し、左は左側にあり、中央は中央にあり、右は右側にあります。 Vlignは垂直アライメントを表し、上部は上部、中央は中央、下は下部です。
<tbody>タグでテーブルボディスタイルを設定します。
01 <!-- -------------------------------------------------------------------------------------------------------------------------
02 <! - ファイル例:10-45.htm->
03 <! - ファイルの説明:テーブルボディスタイルを設定 - >
04 <!-- -------------------------------------------------------------------------------------------------------------------------
05 <HTML>
06 <ヘッド>
07 <Title>テーブルボディスタイルを設定</title>
08 </head>
09 <Body>
10 <テーブルボーダー= 3幅= 400高さ= 100 bordercolor =#336699 align = center>
11 <thead align = center bgcolor =#00ccff>
12 <tr>
13 <TD colspan = 2> Web Page Production Software </td>
14 </tr>
15 </head>
16 <Tbody Align =左bgcolor =#00cccc>
17 <tr>
18 <TD> Webイメージソフトウェア</td> <td>花火</td>
19 </tr>
20 <tr>
21 <TD> Web Page Production Software </td> <td> dreamweaver </td>
22 </tr>
23 <tr>
24 <TD> Webアニメーションソフトウェア</TD> <TD> Flash </TD>
25 </tr>
26 </tbody>
27 </table>
28 </body>
29 </html>
16行目はテーブル本体のスタイルを設定し、26行目はテーブル本体の端を設定します。