css - safari 中的复选框大小?

标签 css safari checkbox

<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);
}

关于css - safari 中的复选框大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3264754/

相关文章:

css - 使用 CSS 居中两个元素

javascript - iphone 的 safari touchmove 事件不工作

python - selenium python webdriver 有没有办法断言所有复选框都已选中或未选中?

html - 我怎么能把文本放在已经在背景图像之上的图像旁边?

javascript - 当灯箱处于事件状态时使页面停止滚动

html - Bootstrap 3 在 Django 模板中显示 col-md-6 之外的内容

html - Safari CSS 问题/背景图片

javascript - 使用主屏幕图标会破坏 iPhone 上的设备高度

c# - asp 中继器复选框状态保留

java - 设置面板在选中复选框时显示? ( java )