text-decoration属性
时间: 2024-01-17 17:03:14 浏览: 130
从零学CSS系列之文本属性
text-decoration属性用于指定文本的装饰效果,常用的值包括:
1. none:无任何装饰效果。
2. underline:文本下方添加一条线。
3. overline:文本上方添加一条线。
4. line-through:文本中间添加一条线,表示删除线。
5. blink:文本闪烁。
该属性可以应用于文本的部分或全部。例如,可以使用以下代码在HTML中添加带下划线的链接文本:
```html
<a href="https://www.example.com" style="text-decoration: underline;">Example</a>
```
此外,text-decoration还支持缩写属性text-decoration-line、text-decoration-style和text-decoration-color,分别用于指定装饰线的类型、样式和颜色。例如:
```css
a {
text-decoration-line: underline;
text-decoration-style: dotted;
text-decoration-color: #f00;
}
```
阅读全文