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

動作ブラウザ 【 IE:4.0  NN:6.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-image:url(bg.gif); }
説  明 テーブルの背景色を指定するにはスタイルの定義でtableにbackground-image:url(背景画像のURL);のようにします。
サンプル <html> <head> <title>テーブルの背景画像を指定する</title> <style type="text/css"><!-- table { background-image:url(bg.gif); } --></style> </head> <body> <table border="1" height="80"><tr><th>表、その1です。</th></tr></table> <table border="2" height="80"><tr><th>表、その2です。</th></tr></table> <table border="3" height="80"><tr><th>表、その3です。</th></tr></table> </body> </html>
補足説明 なし

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