我有一個div在另一個div裏有一個固定位置在頁面的底部。我需要外部div滾動到內部div以允許顯示所有內容。有外部div滾動過去的div裏面的CSS
.outer{position:relative; }
.inner{position:fixed; bottom:0; z-index:999;}
<div class="outer">
<p>Lots of content......</p>
<div class="inner">
<p>More content fixed in a box at the bottom of the page.....</p>
</div>
<div>
也許這也幫助形容它更好 - http://jsfiddle.net/winchendonsprings/dDgjQ/2/ 我需要在這個例子中什麼是黃色文字滾動一路紅盒子的頂部。
我忘了提,這種內在的div會不會在每一頁上,只有一個頁面實際。但是,外部div將在每個頁面上。如果我添加填充,它將在頁面上看起來很有趣。瞭解解決方法? – winchendonsprings
查看上面編輯@winchendonsprings –
感謝您的幫助。我的解決方案基本上是你的編輯2.再次感謝 – winchendonsprings