css的text-decoration
时间: 2023-04-20 22:03:26 浏览: 117
CSS的text-decoration是用来设置文本装饰效果的属性,包括下划线、删除线、上划线等。可以通过设置不同的值来改变文本的装饰效果,如underline表示下划线,line-through表示删除线,overline表示上划线等。此外,还可以设置颜色、样式等属性来进一步定制文本装饰效果。
相关问题
css text-decoration
CSS `text-decoration` 属性用于设置文本装饰,如下划线、删除线、上划线等。
常见取值:
- `none`:默认值,不设置任何装饰。
- `underline`:下划线。
- `overline`:上划线。
- `line-through`:删除线。
- `blink`:闪烁的虚线,不被所有浏览器支持。
示例:
```css
p {
text-decoration: underline;
}
h1 {
text-decoration: line-through;
}
```
text-decoration用法
text-decoration是CSS中用来设置文本修饰的属性,常见的修饰有下划线、删除线、上划线等。
常用的属性值如下:
- none:不显示任何文本修饰。
- underline:添加下划线。
- overline:添加上划线。
- line-through:添加删除线。
- blink:文本闪烁。
使用方法如下:
```css
text-decoration: underline; /* 添加下划线 */
text-decoration: line-through; /* 添加删除线 */
text-decoration: none; /* 不添加任何文本修饰 */
```
也可以同时设置多个修饰,如下:
```css
text-decoration: underline line-through; /* 添加下划线和删除线 */
```
如果想要设置文本修饰的颜色,可以使用text-decoration-color属性,例如:
```css
text-decoration: underline;
text-decoration-color: red; /* 下划线颜色为红色 */
```
阅读全文