按钮:焦点完全在chrome上工作,但在firefox上没有

问题描述 投票:1回答:1

我有一个按钮,我想要专注于该按钮的一些样式。在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。

javascript firefox button focus mozilla
1个回答
0
投票

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

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.