我想構建一個頁面,其中頁面中間的某個DIV
元素是可水平滾動的(大寬度+ overflow-x: scroll
)。滾動條將出現在這個DIV
的底部。水平滾動+滾動條
是否可以在頁面最底部顯示一個滾動條(所以不在div底部),它只滾動頁面中間那個可滾動的DIV
中的內容?
我問這個問題,因爲我想將內容放置在可滾動的DIV
下面,我希望用戶能夠通過位於此內容下的滾動條滾動水平線DIV
。
<body>
<div id="wrap">
<div class="slider">
# Slider content here
</div>
<ul class="job_listings scrollable">
<li>job 1</li>
<li>job 2</li>
<li>job 3</li>
<li>job 4</li>
</ul>
<div class="about us">
# About us content here
</div>
** here I want the scrollbar of the ul job_listings to appear, at the very bottom of the page **
</div>
</body>
能否請您分享的HTML,以及你想什麼呢? – 2015-03-02 12:56:53
更多信息請 – Lafontein 2015-03-02 13:07:13
我添加了我的html代碼示例 – 2015-03-02 13:11:00