让层飘在页面窗口的底部居中位置

    #bottomNav 
    {
    	text-align:center;
    	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;
     }

                    <div id="bottomNav" >
                    <a href="http://www.apexgroup.cn/NewsInfo/tradeshow.aspx?infoid=2782" >
                    <img src="images/foot1212.jpg" /></a>
                    </div>

以上代码保证id为bottomNav的层时时刻刻飘在窗口的底部居中位置

你可能感兴趣的:(让层飘在页面窗口的底部居中位置)