我正在尝试使用 CSS3 制作自定义复选框,这在 Chrome 上运行良好。在 Firefox 上……没那么多。
编辑:它似乎在 Firefox 37 上运行良好。
下面的答案仍然是相关的,但从 2013 年中期开始的风格相关问题已经解决。
此处未提及 IE 支持,但欢迎对其进行编辑/回答。
演示
的HTML:
<input type="checkbox" id="first"/>
<label for="first">This is pretty awesome</label>
CSS:
input[type=checkbox] {
appearance: none;
background: transparent;
position: relative;
}
input[type=checkbox]::after {
position: absolute;
top: 0;
left: 0;
content: '';
text-align: center;
background: #aaa;
display: block;
pointer-events: none;
opacity: 1;
color: black;
border: 3px solid black;
}
input[type=checkbox] + label {
line-height: 48px;
margin: 0 15px 0 15px;
}
input[type=checkbox]:hover::after {
content: '';
background: #32cd32;
opacity: .3;
}
input[type=checkbox]:checked::after {
content: '\2713';
background: #32cd32;
}
input[type=checkbox]:checked:hover::after {
opacity: 1;
}
input[type=checkbox],
input[type=checkbox]::after {
width: 48px;
height: 48px;
font-size: 46px;
line-height: 48px;
vertical-align: middle;
border-radius: 50%;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
注意:为了简洁起见,我删除了供应商前缀和用户选择之类的东西。完整的代码在笔中。
我需要进行哪些更改才能使其在 Firefox 上看起来与在 Chrome 上一样?
期望:
不需要: