在这个小提琴中,http://jsfiddle.net/munkii/tpQQN/我通过 intro 类在段落元素上有一些边距底部,通过 what-is 类在列表项上有一些边距底部。
IE
article.about .what-is {
height: 100%;
margin-bottom: 34px;
padding-right: 34px;
width: 600px;
}
article.about p.intro {
font-weight: bold;
margin-bottom: 43px;
}
我已经从我的工作中删除了不必要的边距,但我仍然想知道为什么当 FF 和 IE 这样做时 Chrome 没有折叠垂直边距。
有什么想法吗?