Kar*_*ngh 7 css safari checkbox
<style>
input.checkbox
{
width:300px;
height:300px;
margin:0px 0 0 0px;
}
</style>
<body>
<input type="checkbox" class="checkbox"/>
Run Code Online (Sandbox Code Playgroud)
我希望增加复选框大小,但此代码在Internet Explorer中正常工作,但在Safari中不能.
sty*_*972 17
input[type=checkbox] {
-webkit-transform: scale(3,3);
}
Run Code Online (Sandbox Code Playgroud)