text-decoration用法
时间: 2024-01-17 21:03:14 浏览: 13
text-decoration 是用于设置文本装饰(如下划线、删除线等)的 CSS 属性。
常用的属性值包括:
- none:默认值,不显示任何文本装饰。
- underline:显示下划线。
- overline:显示上划线。
- line-through:显示删除线。
- blink:显示闪烁的文本。
可以通过以下方式来设置 text-decoration 属性:
```css
/* 设置下划线 */
text-decoration: underline;
/* 设置删除线 */
text-decoration: line-through;
/* 同时设置下划线和删除线 */
text-decoration: underline line-through;
/* 取消文本装饰 */
text-decoration: none;
```
此外,还可以通过 text-decoration-color 属性来设置文本装饰的颜色,通过 text-decoration-style 属性来设置文本装饰的样式(如虚线、双线等)。
阅读全文