text-decoration 属性は、テキスト装飾を設定または削除するために使用されます。
text-decoration: none; 通常、リンクから下線を削除するために使用されます。
a {
text-decoration: none;
}
他の text-decoration 値は、テキストを装飾するために使用されます。
h1 {
text-decoration: overline;
}
h2 {
text-decoration: line-through;
}
h3 {
text-decoration: underline;
}
注: リンク以外のテキストに下線を引くことは、読者を混乱させることが多いため、推奨されません。