如何使用css單擊背景色時將背景色設置爲我的<button>
?使用CSS單擊時將背景色設置爲按鈕
.myBtn {
background-color: #fff;
cursor: pointer;
color: #000;
text-decoration: none;
text-transform: uppercase;
}
HTML:
<button type="button" class="myBtn">Highlight me when Clicked</button>
像切換或僅在按下了按鈕的鼠標按鈕? – trumank