我今天在 jQuery 中玩幻灯片。当我注意到奇怪的事情时,我设法创建了它。放置幻灯片的 div#feature
似乎以某种方式粘在其父元素#content
上。当我添加margin: 10px auto
到#feature
div 时,#content
div 也相对于其父元素降低了 10px。
谁能告诉我我在这里做错了什么?
为您提供整个代码会造成混乱,但这里有一个链接:
https://dharman.eu/sites/daftpunk/
用于#feature
:
#feature {
width:940px;
margin: 10px auto;
position: relative;
height:500px;
overflow: hidden;
clear: both;
box-shadow: 0px 0px 5px 2px #000;
}
和CSS #content
:
#content{
min-height:800px;
background-color: #fff;
}
我的朋友注意到一件有趣的事情。如果你在内容中添加margin-bottom: 30px
到#menu
空白的 10px 空间,虽然边距问题仍然没有解决,但它会被正确填充。