html普通按钮文字加下划线
时间: 2023-07-23 11:09:39 浏览: 207
使用css美化html表单控件详细示例(表单美化)
5星 · 资源好评率100%
要HTML中的普通按钮上添加下划线,你可以使用CSS样式来实现。你可以使用以下代码示例:
```html
<!DOCTYPE html>
<html>
<head>
<style>
.underline-btn {
text-decoration: underline;
}
</style>
</head>
<body>
<button class="underline-btn">按钮</button>
</body>
</html>
```
上面的代码定义了一个CSS样式类`.underline-btn`,它将为按钮添加下划线效果。然后,在按钮的`class`属性中应用这个样式类。
这样,按钮上的文字就会显示为带有下划线的样式了。
阅读全文