text-decoration
text-decoration 简写 CSS 属性设置文本上的装饰性线条的外观。它是 text-decoration-line、text-decoration-color、text-decoration-style 和较新的 text-decoration-thickness 属性的缩写。
<https://developer.mozilla.org/zh-CN/docs/Web/CSS/text-decoration>
语法
css
text-decoration: underline;
text-decoration: overline red;
text-decoration: none;
/* 全局值 */
text-decoration: inherit;
text-decoration: initial;
text-decoration: revert;
text-decoration: revert-layer;
text-decoration: unset;Text Decoration
<https://www.tailwindcss.cn/docs/text-decoration>
用法
| Class | Properties |
|---|---|
| underline | text-decoration-line: underline; |
| overline | text-decoration-line: overline; |
| line-through | text-decoration-line: line-through; |
| no-underline | text-decoration-line: none; |
