| 1、CSS样式 
 Css代码
 2、html部分复制代码body {
background-image:url(text.txt); /* for IE6 */
background-attachment:fixed;
}
#bottomNav {
z-index:999;
position:fixed;
bottom:0;        /*去掉此行则固定在页面顶部*/
left:0;
width:100%;
_position:absolute; /* for IE6 */
_top: expression(documentElement.scrollTop + documentElement.clientHeight-this.offsetHeight); /* for IE6 */
overflow:visible;
} 
 Html代码
 复制代码<div id="bottomNav">我是导航栏O(∩_∩)O~</div> 
 |