[新着] Webテンプレートを仮オープンしました
text-decoration は、文字の装飾(上線、下線、抹消線、点滅)を指定するプロパティです。
a要素の疑似クラス(hover)にこのプロパティ(値 none)を指定すると、ポイントしたときに下線を消すことができます。
a:hover {
text-decoration: none;
}
| text-decoration | none … (下線を消します) |
|---|
上記以外の値については、「文字の装飾を指定する」をご覧ください。
<html>
<head>
<title>TAG index Webサイト</title>
<style type="text/css">
<!--
a:hover { text-decoration: none; }
-->
</style>
</head>
<body>
<p><a href="index.html">リンクカテゴリー</a></p>
</body>
</html>
▼これをブラウザで見ると次のように表示されます