html5设置复选框的宽度和高度一般是结合CSS3来设置的,
<button type="checkbox">Click Me!</button><style>
checkbox{
width:100px
height:100px
}
</style>
这样宽高就设置好了。
html5设置复选框的宽度和高度一般是结合CSS3来设置的,
<button type="checkbox">Click Me!</button><style>
checkbox{
width:100px
height:100px
}
</style>
这样宽高就设置好了。