首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

checkbox,radioIE6,7上兼容性

2012-11-25 
checkbox,radioIE6,7下兼容性设置默认样式:stylebody,input{ margin:0px padding:0px}input{ font-siz

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 后,各浏览器表现样式一致。

热点排行