标签: html css internet-explorer internet-explorer-7
我在IE7中遇到浏览器问题,您可以在此处查看:http://jsfiddle.net/SZDDm/1/
问题是当您单击图像周围的标签和复选框时,图像将向上移动到位。
造成这种情况的原因是什么?
答案 0 :(得分:4)
在课程#searchDeals .networks label中将身高更改为56px。这将解决问题。
#searchDeals .networks label
56px
问题在于 INPUT 的margin: 4px auto。
margin: 4px auto
只需给它margin: 4px auto 0 auto。
margin: 4px auto 0 auto
http://jsfiddle.net/SZDDm/23/
出于这种情况的原因,请检查此链接: http://www.brunildo.org/test/margins_clear.html