我正在尝试使复选框看起来像我网站上的其余按钮:pencilfactorygames.com/createaccount.html 这是我的 CSS:
input[type="checkbox"]{
display:none;
}
input[type="checkbox"] + label {
background: -webkit-linear-gradient(top, #222 50%, #111 50%);
border-radius: 5px;
color:#FFF;
display:inline-block;
width:19px;
height:19px;
margin:-1px 4px 0 0;
}
input[type="checkbox"]:checked + label {
background: -webkit-linear-gradient(top, #0F0 50%, #F00 50%);
}
这是我的html:<input type="checkbox" name="ToS">
当我测试它时,它看起来就像普通的默认复选框。编辑:固定,忘记使复选框不可见