文本装饰
定义
在 ZUI 中,你可以通过如下工具类来设置文本装饰样式:
| 工具类 | 属性 |
|---|---|
| underline | text-decoration-line: underline; |
| overline | text-decoration-line: overline; |
| line-through | text-decoration-line: line-through; |
| no-underline | text-decoration-line: none; |
示例
下划线 underline
The quick brown fox jumps over the lazy dog. 白日依山尽,黄河入海流。
上划线 overline
The quick brown fox jumps over the lazy dog. 白日依山尽,黄河入海流。
中间划线 line-through
The quick brown fox jumps over the lazy dog. 白日依山尽,黄河入海流。
无划线 no-underline
The quick brown fox jumps over the lazy dog. 白日依山尽,黄河入海流。