3列×2行の表を表示する

動作ブラウザ 【 IE:3.0  NN:2.0
Internet Explorer Netscape Navigator iCab
3.0x 4.0x 4.5 5.0x 5.5 6.0 2.0x 3.0x 4.0x 4.x 6.0 2.x
Windows - -
Macintosh - -
UNIX - - - - - - -
Dreamcast - - - - - - - - - - -

ポイント <table border="1"> <tr><td>青色</td><td>赤色</td><td>緑色</td></tr> <tr><td>blue</td><td>red</td><td>green</td></tr> </table>
説  明 表を表示するにはtableタグで囲みます。行をtrタグで、列をtdタグで囲みます。1つしかセル項目がない場合は「<table><tr><td>項目</td></tr></table>」のようになります。
サンプル <html> <head> <title>3列×2行の表を表示する</title> </head> <body> <table border="1"> <tr><td>青色</td><td>赤色</td><td>緑色</td></tr> <tr><td>blue</td><td>red</td><td>green</td></tr> </table> </body> </html>
補足説明 なし

■サンプルを実行する >>実行
■各ブラウザでの動作結果を見る >>View!