#bottom_fade {
position: absolute;
bottom: 0;
width: 100%;
background: url("bottom-fade.png");
background-repeat:repeat-x;
height: 400px;
z-index: 2;
}
.categories {
position: absolute;
left: 50%;
color:black;
word-wrap: break-word;
font-family: 15px 'Libre Baskerville', serif;
margin-left: -200px;
z-index: 1;
}
.categories td {
width: 200px;
}
您可能會看到上述代碼here的結果。 嘗試調整瀏覽器窗口的大小,以便強制滾動以查看錶格中的全部文本。防止CSS頁腳滾動
當您滾動時,您可能會看到#bottom_fade
不會粘在頁面的底部,而是會跟隨您的滾動。我不希望發生這種情況:無論滾動條發生什麼,我怎麼能說bottom_fade總是保持連接到瀏覽器窗口的底部?
非常感謝!
這是不相關的,但可以考慮設置'指針的事件:在您的頁腳none',它中斷文本選擇,請參見:[點擊通過DIV到底層元素( http://stackoverflow.com/questions/3680429/click-through-a-div-to-underlying-elements) – MikeM 2013-02-13 21:13:59
哦!多虧了很多人,甚至沒有考慮到這一點。我會添加它! – Saturnix 2013-02-13 21:22:59