マウスがテーブルのセルの上に乗ったら背景色を変更する

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

ポイント .type1 { background-color:#D0D0D0; }
.type1:hover { background-color:#FFFFF0; }
説  明 マウスがテーブルのセルの上に乗ったら背景色を変更するようにするには:hoverを使います。IE6まででは、この:hoverはaタグにしか作用しませんが、それ以外のブラウザでは、多くのタグで使用することができます。
サンプル <html>
<head>
<title>マウスがテーブルのセルの上に乗ったら背景色を変更する</title>
<style type="text/css"><!--
.type1 { background-color:#D0D0D0; }
.type1:hover { background-color:#FFFFF0; }
--></style>
</head>
<body>
<table border="1" cellpadding="8">
<tr><td class="type1"><a href="http://www.openspc2.org/">OpenSpace</a></td></tr>
<tr><td class="type1"><a href="http://www.yahoo.co.jp/">Yahoo</a></td></tr>
<tr><td class="type1"><a href="http://www.google.com/">Google</a></td></tr>
<tr><td class="type1"><a href="http://www.infoseek.co.jp/">Infoseek</a></td></tr>
</table>
</body>
</html>
補足説明 なし

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