内容滚动横幅和标题下的问题

时间:2015-04-18 18:53:22

标签: html css

所以我有这个固定标题,其中z-index:10低于固定横幅,然后低于相对内容容器。我想要的是内容滚动横幅但在标题下。但是,当我尝试滚动它时它不起作用。对我来说,奇怪的是,每当我将box-shadow: 0px 0px 2px rgb(100,100,125);添加到内容容器时,它就会按照我的意愿行事。我使用以下代码:



* {
    padding: 0;
    margin: 0 auto;
}

body {
    background: rgb(223,227,238);
    text-align: center;
}

#body_container {
    padding-top: 80px;
}

#banner_container {
    position: fixed;
    left: 0;
    right: 0;
}

#banner {
    width: 1024px;
    height: 300px;
}

#content_container {
    background: rgb(243,247,248);
    max-width: 1024px;
    height: 100%;
    position: relative;
    top: 300px;
    box-shadow: 0px 0px 2px rgb(100,100,125);
}

header {
    min-width: 100%;
    background: rgb(50,50,50);
    height: 80px;
    position: fixed;
    z-index: 10;
}

/* Header styling, not relevant */
#header_container {
    max-width: 1024px;
    height: 100%;
}

#header_container div {
    float: left;
    display: inline-block;
    width: 25%;
}

#logo {
    width: 50%;
    height: auto;
}

.menuItem {
    padding-top: 29px;
    height: calc(100% - 29px);
    border: 0;
    text-align: center;
    font-family: Signika;
    font-size: 25px;
    color: rgb(203,207,218);
}

.menuItem:hover {
    border-bottom: 4px solid rgb(59,89,202);
    height: calc(100% - 33px);
    color: rgb(160,170,218);
}

.menuLogo {
    padding-top: 14.5px;
    height: calc(100% - 14.5px);
    border: 0;
    text-align: center;
}

#mobile_menu_button {
    display: none;
}

<header>
    <div id="header_container">
        <div class="menuLogo">
            <img id="logo" src="img/desygn%20logo%20website.png">
        </div>
        <div class="menuItem">Home</div>
        <div class="menuItem">Over</div>
        <div class="menuItem">Contact</div>
                
        <div id="mobile_menu_button">
                    
        </div>
    </div>
</header>
        
<div id="body_container">
    <div id="banner_container">
        <img id="banner" src="img/banner_website.png">
    </div>
            
    <div id="content_container">
    </div>
</div>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:1)

在您的代码中,您未在content_container下添加任何内容。我发现您的代码没有任何问题。它工作正常。查看内容<{p}}的here