ie6、7下button添加背景和边框,内边距会出现1px的边框

时间:2024-01-08 15:48:38

ie6、7下button添加背景和边框,内边距会出现1px的空白边框

解决办法:在input外面加上一个标签,把背景和边框都写在标签的样式上面,input的 background和border都none。

span { display:inline-block; width:40px; height:20px;border-radius: 2px; background:url(images/btnBg.gif) repeat-x;}
input {width:40px; height:20px; background:none; border:none; cursor:pointer; font-size:12px;} <span><input name="" type="button" value="提交" /></span>

暂时只找到这个解决办法,以后再继续研究。