我只希望彼此重叠3个DIV。这不是很多代码,当我在没有任何内容的情况下明白地执行它时,它会正确堆叠。不知道我做错了什么,但这里是代码。我想在中间内容DIV下面再添加一个DIV。这用于底部信息栏。我理解z-index
更多地用于图层,对我的知识不利。
这是我的HTML代码:
<html>
<head>
<title>Mt. Rose, City of Refuge MEdia</title>
<link rel="stylesheet"
href="storage/mainsite/styles/default_button.css" type="text/css">
<link rel="stylesheet" href="storage/mainsite/styles/default_font.css"
type="text/css">
<link rel="stylesheet" href="storage/mainsite/styles/default_div.css"
type="text/css">
</head>
<body style="background-color: rgb(255, 255, 255); text-align: center;">
<br>
<div class="maindefault" style="display: block;"><!--Banner insert -->
<img src="storage/mainsite/bannerfinalfeathered.png" alt=""><a
class="button"
href="http://output93.rssinclude.com/output?type=iframe&id=456111&hash=c334e7f73918b535f66271d019d52a83"
title="Home" target="content"><span>Home</span></a> <a class="button"
title="About Us"
href="http://mtrosecogic.org/mtrose1/about"><span>About</span></a>
<a class="button" href="index.html" title="Mt. Rose Public Calendar"><span>Calendar</span></a>
<a class="button" href="/flash_newpage.html" title="Live Video Feed"><span>Live
Feed</span></a> <a class="button" target="content" href="access.html"
title="Restricted"><span>Access</span></a>
<a class="button" href="index.html"
title="Mt. Rose Virtual Learning Environment"><span>Education</span></a>
<a class="button" href="/flash_newpage.html"
title="City of Refuge Online Webstore!"><span>Store</span></a>
<a class="button" target="content" href="/interactive.html"
title="Interactive Media Gallery"><span><font face="Juice">Interactive</font></span></a>
</div>
<br>
<div class="maindefault">
<iframe
style="margin-top: 0px; margin-bottom: 0px; text-align: center; width: 416px; height: 800px; float: left;"
float="" marginheight="0" src="flash_newpage.html" id="flashframe"
name="flashframe" marginwidth="0" frameborder="0" scrolling="no"></iframe>
<iframe
style="overflow: auto; margin-top: 6em; margin-bottom: 0px; height: 600px; width: 400px; float: right; text-align: center;"
id="content" marginheight="0" marginwidth="0"
src="http://output93.rssinclude.com/output?type=iframe&id=456111&hash=c334e7f73918b535f66271d019d52a83"
name="content" frameborder="0"></iframe>
</div>
</body>
</html>
这是我的div的CSS(它是一个链接的样式表):
.maindefault {
margin: 0px auto;
width: 817px;
font-family: "High Tower Text",Georgia,Serif;
display: inline-block;
text-align: center;
}
另外,如果有帮助,我正在使用Kompozer 8.3。 THANKYOU
编辑::我不熟悉JS Fiddler,但链接是mtrosemedia.tk。当我在最后.maindefault div
下面添加另一个</div>
时,我的新DIV紧贴在第二个DIV的顶部。我需要新的DIV紧贴第二个DIV的底部。然后,当我添加内容时,它显示在我的Flash和我的RSS源之上。我也希望改进Feed列表,但我会提出另一个问题。
答案 0 :(得分:0)
当你把内容放进去时,你是否说div有重叠?
尝试将.maindefault浮动。添加内容后,下一个div应该很好地对齐并紧贴在它上面的那个顶部。