html表单按钮颜色修改
时间: 2023-03-23 19:04:27 浏览: 909
html5-form:自举成品结构
可以使用CSS来修改HTML表单按钮的颜色,具体方法如下:
1. 在HTML中添加一个按钮元素,例如:
<button>提交</button>
2. 在CSS中添加样式,例如:
button {
background-color: blue;
color: white;
border: none;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
这样就可以将按钮的背景颜色修改为蓝色,文字颜色修改为白色。其他样式可以根据需要进行修改。
阅读全文