css设置button按钮颜色的属性
时间: 2023-09-29 15:06:42 浏览: 187
set-the-color-button-control.rar_C++ 按钮 颜色_button控件_颜色按钮
可以使用以下 CSS 样式来设置 `button` 按钮的颜色:
```css
button {
background-color: #4CAF50;
border: none;
color: white;
padding: 12px 24px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
```
其中,`background-color` 属性用于设置按钮的背景颜色,`color` 属性用于设置文字颜色。你可以将 `#4CAF50` 替换成你想要的颜色值。其他属性可以根据你的实际需求进行调整。
阅读全文