0

所以,我正在研究这个 JSFIDDLE ( http://jsfiddle.net/dRpWv/248/ ),我不明白为什么 botcontainer div 会渗入页脚。我在网站上创建的其他页面没有这个问题。

我认为这与最近 JS 编码的“垂直专业知识”图块上的 div 隐藏/显示有关,因为我检查了所有 div 并确定它们都已关闭。此外,尝试了无效的显示和位置编辑。

以下是内容容器的 CSS 基础知识:

#topcontainer {
margin:75px 0 0 0;
}

#botcontainer {
margin:100px 0 0 0;
}

这是“垂直专业知识”领域的基本 css(包装在 botcontainer div 中):

.vertTiles {
border: none; 
margin-right: 3px;
margin-top:3px;
float:left;
}
.vertCont {
border: 1px solid black; 
background-color: #ffffff; 
display: none;
padding: 5px; 
width:800px;
max-width:800px;
height:400px;
max-height:400px;
top:0;
left:0;
}
#xbox {
position:absolute;
width:75px;
height:75px;
bottom:20px;
right:20px;
}

请注意,我省略了 MM_imageswap js,只是在 JSFIDDLE 中保持干净。来自社区的任何帮助都会有所帮助!

4

1 回答 1

2

您的代码和 CSS 样式非常丰富。这将需要一些时间来完成。这是我添加的。这是你想要的吗?你的问题有点令人困惑。

CSS

#botcontainer {
    margin:100px 0 0 0;
    clear:both;
    overflow:auto;
}

小提琴

于 2013-07-23T16:49:43.100 回答