当前位置: 代码迷 >> Web前端 >> checkbox,radioIE6,7上兼容性
  详细解决方案

checkbox,radioIE6,7上兼容性

热度:346   发布时间:2012-11-25 11:44:31.0
checkbox,radioIE6,7下兼容性
设置默认样式:
<style>
body,input{ margin:0px; padding:0px;}
input{ font-size:12px; vertical-align:middle;}
.test{ background-color:#CCC; font-size:12px;}
</style>
IE6.7的表现: 左边和上边有边距

FF的表现:


<style>
body,input{ margin:0px; padding:0px;}
input{ font-size:12px; vertical-align:middle; width:14px; height:14px;}
.test{ background-color:#CCC; font-size:12px;}
</style>

对input定宽和高14px 后,各浏览器表现样式一致。
  相关解决方案