テーブルの背景色を指定する

動作ブラウザ 【 IE:4.0  NN:4.0】 ■CSSバージョン【1】
Internet Explorer Netscape Navigator iCab
3.0x 4.0x 4.5 5.0x 5.5 6.0 2.0x 3.0x 4.x 6.0 2.x
Windows × - × × -
Macintosh × - - × ×
UNIX - - - - - - × × -

ポイント table { background-color:yellow; }
説  明 テーブルの背景色を指定するにはスタイルの定義でtableにbackground-colorでカラー名またはカラーコードを指定します。
サンプル <html> <head> <title>テーブルの背景色を指定する</title> <style type="text/css"><!-- table { background-color:yellow; } --></style> </head> <body> <table border="1"><tr><th>表、その1です。</th></tr></table> <table border="2"><tr><th>表、その2です。</th></tr></table> <table border="3"><tr><th>表、その3です。</th></tr></table> </body> </html>
補足説明 なし

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