button:将焦点完美地放在chrome上,而不在Firefox

时间:2019-05-01 14:17:50

标签: javascript firefox button focus mozilla

我有一个按钮,我想重点关注该按钮。 在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。

1 个答案:

答案 0 :(得分:0)

Mozila developer网站上,我发现该按钮没有针对Mac OS的焦点状态

enter image description here