更改按钮颜色的正确方法是什么?我的按钮:
<button id="easy_mode" href="#gameZone" class="btn waves-effect waves-light spacing theme-color" >
主题颜色:
.theme-color {
background-color: #ee6e73;
}
.theme-color:hover {
background-color: #F18B8F;
}
按钮在被点击后会失去颜色。我错过了什么?