css 文字下划线样式
时间: 2023-11-14 13:07:20 浏览: 138
CSS定义下划线样式
5星 · 资源好评率100%
要为文字添加下划线样式,可以使用CSS中的text-decoration属性。将其设置为"underline"即可添加下划线。例如:
```css
.text {
text-decoration: underline;
}
```
也可以将其应用于特定的元素,例如链接:
```css
a {
text-decoration: underline;
}
```
阅读全文