要素にマウスポインタが触れたときのスタイルを指定します。
IE3 / IE4 / IE5 / IE5.5 / IE6 / N4 / N6 / N7 / O6 / O7 / O9 / Fx1 / Fx2 / IE5 mac
要素[.class名][#id名]:hover { 値; }
<html>
<head>
<title>サンプルコード</title>
<style type="text/css">
a#sample1:hover {
text-decoration : overline underline;
background-color : LightYellow;
color : Red;
font-style : italic;
}
span#sample2 {
text-decoration : overline underline;
background-color : LightYellow;
color : Red;
font-style : italic;
}
</style>
</head>
<body>
<a id="sample1" href="#.html">hoverサンプル</a>
<span id="sample2">←左のリンクにマウスを当てると、このような表示になります。</span>
</body>
</html>