.bottomTable{ background-color: rgb(249,249,249); z-index:99999999; position:fixed; bottom:0; left:0; width:100%; _position:absolute; /* for IE6 */ /* ...
.bottomTable{
background-color: rgb(249,249,249);
z-index:99999999; position:fixed; bottom:0; left:0; width:100%; _position:absolute; /* for IE6 */
/* _top: expression(document.body.scrollTop+document.body.clientHeight-this.offsetHeight); */
_top: expression(document.body.scrollTop+document.body.clientHeight-this.offsetHeight-6); /* for IE6 */
overflow:visible;
}
1、z-index:設置層處於最頂層。
2、position:fixed;設置定位。
3、_top: expression(document.body.scrollTop+document.body.clientHeight-this.offsetHeight-6);通過css綁定js控制層距頂端的高度,
此處是控制層處於底部,具體數值根據需求作相應的調整。
4、document.body.scrollTop:body,body標簽滾動條滾動的距離,可更換為你其它標簽對象(存在滾動條)。
5、document.body.clientHeight,body標簽的高度,可更換為你其它標簽對象。
6、-6,距具體情況作相應改動。