text-decoration 属性可以设置以下文本修饰效果:
none:默认值,无任何文本修饰效果。underline:添加下划线。overline:添加上划线。line-through:添加穿过文本的线条。blink:添加闪烁效果,但在大多数浏览器中已被移除。此外,text-decoration 还支持以下两个关键词:
inherit:继承父元素的 text-decoration 属性值。initial:设置属性为默认值。例如,如果想要给链接添加下划线,可以在 CSS 中这样写:
a {
text-decoration: underline;
}
需要注意的是,text-decoration 属性还可以与 color 属性一起使用,用于设置文本修饰效果的颜色。这可以通过 text-decoration-color 属性来实现。