首頁·CSS 屬性

text-decoration-color

文字

只決定那條線的顏色。

怎麼寫text-decoration-color: currentColor;
常用的值currentColor, #0ea5e9
繼承不往下傳,到這個元素為止
屬於這個簡寫text-decoration
分類文字

怎麼看這一頁

  • 會繼承的屬性,在父元素上寫一次,所有子元素都跟著用。和文字有關的屬性大多如此。
  • 簡寫屬性會把你沒寫到的值悄悄退回預設值。只寫 background: red,先前設的背景圖也一併沒了。
  • 同一個元素上規則撞車時,選擇器越具體的贏。只有具體度一樣時,才輪到寫在後面的贏。
  • 做動效盡量用 transform 和 opacity,會順滑得多。改 width 或 top 得重新算一遍版面。

常見問題

Q. CSS 的 text-decoration-color 屬性是做什麼的?

只決定那條線的顏色。

Q. text-decoration-color 怎麼寫?

寫成 text-decoration-color: currentColor; 這樣。常用的值有 currentColor、#0ea5e9 等。

Q. text-decoration-color 會傳給子元素嗎?

不會。需要的元素得各寫各的。

Q. 有沒有能一次設定 text-decoration-color 的簡寫屬性?

可以用 text-decoration 一次設好。

同一類的屬性

標準文件