(hover) text-decoration: underline;
ブラウザ |
|
---|---|
プロパティ |
text-decoration は、文字の装飾(下線、上線、取り消し線、点滅)を指定するプロパティです。
疑似クラス(:hover
)を指定したa要素にこのプロパティ(値 underline
)を設定すると、ポイントした時にだけ下線を表示することができます。
- この指定内容は、リンクテキストの下線を消している場合に有効です。
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
プロパティ名 | 値 | 説明 |
---|---|---|
text-decoration |
underline |
テキストに下線を引く |