css – safari中的复选框大小?

前端之家收集整理的这篇文章主要介绍了css – safari中的复选框大小?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<style>  
input.checkBox  
{  
    width:300px;  
    height:300px;  
    margin:0px 0 0 0px;  
}  
</style>  
<body>  
<input type="checkBox" class="checkBox"/>

我希望增加复选框大小,但此代码在Internet Explorer中正常工作,但在Safari中不能.

解决方法

input[type=checkBox] {
    -webkit-transform: scale(3,3);
}
原文链接:https://www.f2er.com/css/214805.html

猜你在找的CSS相关文章