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;
}

親自試一試

注釋:建議不要在非鏈接文本加下劃線,因為這經常會使讀者感到困惑。