如何在IE中创建方形复选框?

时间:2013-10-16 03:38:48

标签: html css internet-explorer

如何在IE中创建方形复选框?

我使用以下代码来确保它们在其他浏览器中是正方形的,但我还没有为IE找到一个好的解决方案。

input[type="radio"] {
-webkit-appearance: checkbox;
-moz-appearance: checkbox;
-ms-appearance: checkbox;     
-o-appearance: checkbox;      
}   

感谢。

1 个答案:

答案 0 :(得分:2)

尝试将类型从收音机更改为复选框。

input[type="checkbox"] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    -ms-appearance: checkbox;     
    -o-appearance: checkbox;   
}