CSS テキスト装飾

テキスト装飾

text-decoration 属性はテキストの装飾を設定または削除するために使用されます。

text-decoration: none; リンクから下線を削除するために通常使用されます:

a {
  text-decoration: none;
}

自分で試してみる

その他 text-decoration テキストを装飾するための値:

h1 {
  text-decoration: overline;
}
h2 {
  text-decoration: line-through;
}
h3 {
  text-decoration: underline;
}

自分で試してみる

注釈:リンクテキストに下線を付けることを推奨しません。なぜなら、これが読者に混乱を与えることが多いからです。