CSS text-decoration
属性
说明
text-decoration
CSS 属性指定要应用于元素文本内容的装饰,例如下划线、上划线等。
下表总结了此属性的使用上下文和版本历史记录。
默认值: | none |
---|---|
适用于: | 所有元素 |
继承: | No |
动画: | Yes, as some of the properties of the shorthand are animatable. 参见动画属性。 |
版本: | CSS 1, 2, 3 |
语法
属性的语法如下:
下面的示例显示了 text-decoration
属性的作用。
a {
text-decoration: none;
}
h1 {
text-decoration: overline;
}
属性值
下表描述了该属性的值。
值 | 说明 |
---|---|
none |
不产生文本装饰。 |
underline |
每一行文字都有下划线。 |
overline |
每行文本上面都有一行。 |
line-through |
每行文字中间都有一条线。 |
blink |
使文本闪烁(在可见和不可见之间交替)。 |
inherit |
如果指定,则关联元素采用其父元素 text-decoration 属性的 计算值。 |
浏览器兼容性
所有主要的现代浏览器都支持 text-decoration
属性。
基本支持—
|
警告:此属性的 blink
值仅受 Firefox 和 Opera 支持。 不推荐使用此值以支持动画,您最好避免使用此值。
进一步阅读
请参阅以下教程: CSS 文本, CSS 边框, CSS3 Animations.
文本相关属性: letter-spacing
, text-align
, text-indent
, text-overflow
, text-shadow
, text-transform
, white-space
, word-spacing
.
Advertisements