ポイントしたときに下線を表示する

[統計] HTMLからXHTMLへの移行を進めていますか?


(hover) text-decoration: underline;

ブラウザ
Internet Explorer Netscape6 Firefox Opera
参考
書式基本 要素名 クラス ID

text-decoration は、文字の装飾(上線、下線、抹消線、点滅)を指定するプロパティです。

a要素の疑似クラスhover)にこのプロパティ(値 underline)を指定すると、ポイントしたときに下線を表示することができます。

リンク文字の下線を消している場合に有効です。


a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}


text-decoration underline … (下線を表示します)

上記以外の値については、「文字の装飾を指定する」をご覧ください。


使用例

<html>
<head>
<title>TAG index Webサイト</title>

<style type="text/css">
<!--

a { text-decoration: none; }
a:hover { text-decoration: underline; }


-->
</style>

</head>
<body>

<p><a href="index.html">リンクカテゴリー</a></p>

</body>
</html>

これをブラウザで見ると次のように表示されます



[特集] レンタルサーバー比較 & サーバー選びのチェックポイント