讓我們看看我能否正確解釋這一點。我想要一個標題,總是可見的AND內容和一個隱藏在內容後面的頁腳,當滾動到頁腳時變得可見。這裏是我迄今爲止...使用位置的簡單的div佈局
#container {
\t height:100%;
\t width:100%;
\t position:relative;
}
#top {
\t height:25vh;
\t width:100%;
\t background-color:red;
\t position:fixed;
\t top:0;
}
#content {
\t height:120vh;
\t width:100%;
\t background-color:green;
\t position:relative;
}
#bottom {
\t height:35vh;
\t width:100%;
\t background-color:blue;
\t position:fixed;
\t bottom:0;
}
<div id="container">
\t <div id="top">
\t
\t </div>
\t
\t <div id="content">
\t
\t </div>
\t
\t <div id="bottom">
\t
\t </div>
</div>
這段代碼目前並:頭背後隱藏的內容和頁腳總是可見的重疊內容。
這是當前測試頁... http://next-factor.com/test-layout.php
太大的幫助是極大的讚賞。謝謝!
在所有3個css類中添加z-index。 z-index幫助您管理重疊 –