0

问题在这里演示

两次点击“点击我”后,#content2 的边距消失。它只发生在 Windows XP 上的 IE8 中。最简单的解决方案是将 #content 2 的上边距替换为<div style="height:30px">&nbsp;</div>. 但这是不可接受的,因为有很多滑动 div。CSS 解决方案是可以接受的!

4

1 回答 1

0

只需删除overflow: hidden

#content {
    position:relative;
/*  overflow:hidden; */
    width:300px;
    height:300px;
    background-color:#432234;
    color:#ffffff;
    display:none;
}

http://jsfiddle.net/hNvzx/7/

于 2012-11-29T16:13:23.920 回答