设置<button></button>颜色
时间: 2023-11-02 19:15:07 浏览: 84
button颜色的控制
你可以使用CSS样式来设置按钮的颜色,例如:
```html
<button style="background-color: blue; color: white;">按钮</button>
```
这将设置按钮的背景颜色为蓝色,文本颜色为白色。你可以根据需要更改颜色值。另外,你也可以将样式定义在CSS文件中,然后通过类名或ID来应用样式。例如:
```html
<style>
.blue-button {
background-color: blue;
color: white;
}
</style>
<button class="blue-button">按钮</button>
```
阅读全文