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;
}
原文地址:https://www.cnblogs.com/wind-wang/p/6022242.html