我有一个按钮,我想重点关注该按钮。 在chrome上可以完美运行,在Firefox上则没有任何反应。
<button class="cButton">
button
</button>
.cButton {
color: black;
background: green;
}
.cButton:focus {
color: white;
background: red;
}
我尝试过
.cButton::-moz-focus-inner {
color: white;
background: red;
}
,但没有用。 我在macOS上使用Firefox 63。