折翼的飞鸟

导航

div一直浮动在页面的底部

 

永远在底部是那种无论滚动条怎么拉,都可以看见悬浮在底部的那种,如果是那种,是用固定定位做的。另外注意页面中最后的元素或者body要空出固定条的高度,不然最后的元素会被遮挡。

 

html:
    <div class="fixed">固定在底部</div>

css样式设置:

    body{ padding-bottom:50px;}
    .fixed{ 
position: fixed;
left: 0px;
bottom: 0px;
width: 100%;
height: 50px;
background-color: #000;
z-index: 9999;
}

 

posted on 2016-11-02 11:17  折翼的飞鸟  阅读(2138)  评论(0编辑  收藏  举报