将div固定浮动网页底部代码

将div固定浮动网页底部代码

div固定浮动网页底部CSS代码,非JS实现纯DIV CSS构造将DIV层静止浮动在网页阅读器底部的。

CSS代码:

position: fixed;bottom: 0;z-index: 100

正文:
1、position: fixed 相对定位的元素,相关于浏览器窗口进行定位。元素(例如DIV)的位子经由 "left", "top", "right" 以及 "bottom" 属性发展规定。

2、bottom: 0 ——设置对象距离底边为0,定位在浏览器底部。

3、z-index: 100——浮动值为100,如果网页另有绝对定位有浮动为90,那么100将浮动最基层。

实例HTML代码:

<div class="box_btn">
<a href="#">靠底部 按钮一样 DIV层</a>
</div>

实例CSS代码:

.box_btn{position: fixed;bottom: 0;left:0;z-index:100;width:100%;
height:80px}

.box_btn a{display:block;border-radius:3px;height:60px; width:90%;
margin:0 auto;line-height:60px;font-size:18px;color: #fff;bac千克round:#ff425a;text-align: center;}

运转代码造诣截图:


div层静止网页底部 静止涉猎器底部 靠阅读器底部

紧要浮动静止在底部DIV元素配置CSS代码:position: fixed;bottom: 0;

推荐阅读