1. Home
  2. スタイルシート CSS
  3. リンク
  4. ポイントした時に下線を消す

ポイントした時に下線を消す


(hover) text-decoration: none;

ブラウザ
IE
Fx
Sf
Cr
特性
text-decoration

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

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



a:hover {
text-decoration: none;
}


プロパティ名 説明
text-decoration none 装飾なし (下線を消す)

使用例


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>文書のタイトル</title>

<style type="text/css">

a:hover { text-decoration: none; }

</style>

</head>
<body>

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

</body>
</html>

表示例


リンク

ページの先頭へ


inserted by FC2 system