HOMEPAGE研究所

MSN検索

HOMEPAGE研究所ff

このサイトついて

このサイトではホームページを
作りたいという方のために、
HTML・CSSの解説
便利なソフト・本などの紹介
レンタルサーバの紹介

などを行っています。

SPONSORED LINK

テーブルの背景を変更したい

対応ブラウザ ie3 ie4 ie5 ie5.5 ie6 n3 n4 n6 n7 fx1 o6 o7

使用するタグ:<table bgcolor="色指定">〜</table>など

テーブルの背景を変更したい場合は以下のとおりです。

 ・背景色を変えたい
   <table bgcolor="色指定">〜</table>
   <tr bgcolor="色指定">〜</tr>
   <td bgcolor="色指定">〜</td>
   <th bgcolor="色指定">〜</th>
 ・背景画像を設定したい
   <table background="画像のURL">〜</table>
   <tr background="画像のURL">〜</tr>※IE未対応
   <td background="画像のURL">〜</td>
   <th background="画像のURL">〜</th>
   

HTMLソース
<table width="300">
<tr bgcolor="#996666"> <th >曜日</th> <th>クラス</th> </tr> <tr> <td bgcolor="#CC9966">月曜</td> <td background="../page/sample/background.gif"> 入門クラス</td> </tr> </table>
ブラウザ上の表示
曜日 クラス
月曜 入門クラス

戻る