<style>
input.checkbox
{
width:300px;
height:300px;
margin:0px 0 0 0px;
}
</style>
<body>
<input type="checkbox" class="checkbox"/>
我希望增加复选框大小,但此代码在Internet Explorer中正常运行,但在Safari中无效。
答案 0 :(得分:17)
input[type=checkbox] {
-webkit-transform: scale(3,3);
}
答案 1 :(得分:1)
您必须使用自定义webkit css属性缩放它们:
input.checkbox {
-webkit-transform: scale(1.3,1.3);
}