简体中文
text-decoration 简写 CSS 属性设置文本上的装饰性线条的外观。它是 text-decoration-line、text-decoration-color、text-decoration-style 和较新的 text-decoration-thickness 属性的缩写。
| Web | Android | iOS | HarmonyOS |
|---|---|---|---|
| 4.0 | x | x | x |
text-decoration: <'text-decoration-line'> || <'text-decoration-style'> || <'text-decoration-color'> || <'text-decoration-thickness'>;
| 名称 | 兼容性 | 描述 |
|---|---|---|
| dashed | 虚线。 | |
| dotted | 点划线。 | |
| double | 双实线。 | |
| line-through | 贯穿文本中间的线。 | |
| none | 不画线。 | |
| overline | 在文本的上方的线。 | |
| solid | 实线。 | |
| underline | 下滑线。 | |
| wavy | 波浪线。 | |
| text-decoration-line | 设置使用的装饰类型,例如 underline 或者 line-through。 | |
| text-decoration-color | 设置装饰的颜色。 | |
| text-decoration-style | 设置装饰的线条的颜色,例如 solid、wavy 或者 dashed。 | |
| text-decoration-thickness | 设置用于装饰的线条粗细。 |
App平台不支持 text-decoration 简写样式,仅支持 text-decoration-line 设置修饰线类型。