0

我只想要 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&amp;id=456111&amp;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&amp;id=456111&amp;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。谢谢你

编辑:: 我不熟悉 JS Fiddler,但链接是 mtrosemedia.tk。当我.maindefault div在最后一个下方添加另一个时会发生什么</div>,我的新 DIV 紧贴在第二个 DIV 的顶部。我需要新的 DIV 紧贴第二个 DIV 的底部。然后,当我添加内容时,它会显示在我的 flash 和我的 RSS 提要之上。我也想改进提要列表,但我会提出另一个问题。

4

1 回答 1

0

当您将内容放入其中时,您是说 div 重叠吗?

尝试将 .maindefault 向左浮动。添加内容后,下一个 div 应该对齐并紧贴其上方的顶部。

于 2012-04-19T01:55:02.017 回答