首页·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 一次设好。

同一类的属性

标准文档