css IE6/7 padding-bottom Bug分析
e8/9(标准模式) and firefox/safari/chrome/opera
ie6/7 and ie8/9(怪异模式)
外层div加了上下padding 15px,可是在ie6/7 and ie8/9(怪异模式)下padding却翻倍了。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>ie6/7 double padding-bottom bug</title>
</head>
<body>
<div style="border:1px solid red;width:300px;padding:15px 0;">
<div style="float:left;border:1px solid gray;">
ie6/7 double padding-bottom bug
</div>
<div style="clear:both;"></div>
</div>
</body>
</html>