我創建了兩個div,一個在頂部,一個在底部。 我創建了一個按鈕。我在左下角頁面給了一個固定位置的財產。 如果我滾動頁面,按鈕僅固定在該位置。 基本上按鈕處於整個頁面的固定位置。 我的要求: 當我滾動頁面時,按鈕應該只固定一定的高度。 當我滾動頁面時,按鈕應該只固定在左邊按鈕,直到第一個div底線觸及按鈕底線。 和文我滾動頁面的按鈕應該與第一個div的底線一起移動。只有一個div的固定位置的按鈕
基本上按鈕應該是固定的位置,直到第一個div底線。 當第一個div底線與按鈕底線一起摺疊時,該按鈕應該是相對/絕對的並隨之一起移動。
希望你明白我的要求。 下面是我的代碼,我找的要求
#top {
border: 1px solid black;
height: 900px;
width: 80%;
position: absolute;
}
.button {
background-color: #4CAF50;
border: none;
color: white;
bottom: 0px;
font-size: 16px;
margin-left: 0px;
cursor: pointer;
padding: 10px 24px;
position: fixed;
}
#bottom {
border: 1px solid black;
height: 900px;
width: 80%;
top: 910px;
position: relative;
}
#middle {
bottom: 50px;
position: fixed;
}
<html>
<body>
<div id="top">
<div id="middle">
<button class="button">Fixed Element</button>
</div>
</div>
<br>
<br>
<div id="bottom">
</div>
</body>
</html>
位置固定是相對於視,有這個quesiton一些有用的提示:HTTP: //stackoverflow.com/questions/5209814/can-i-position-an-element-fixed-relative-to-par你可能會覺得有用。 – connorb