我想弄清楚如何設置一些部分標題保持固定,但當用戶到達下一個標題時,然後向上滾動頁面。例如:http://www.codeandtheory.com/about-us。固定/滾動Div
我的標記:
<div class="section-title"><div class="section-bar"></div>
<a href="#collections"><p class="section-title">Collections Management</p></a>
</div>
我的CSS:
.section-title {
width: 270px;
font-size: 30px;
line-height: 38px;
color: #f18a21;
text-transform: uppercase;
position: fixed;
float: left;
display: block;
}
測試環節:http://api.mtscollective.com
可這在純CSS來完成,或者需要JS?
謝謝!
JS是必需的。 –
@ dwreck08啊。你能推薦任何現有解決方案嗎? –