div固定浮动网页底部CSS代码,非JS实现纯DIV CSS构造将DIV层静止浮动在网页阅读器底部的。 CSS代码: position: fixed;bottom: 0;z-index: 100
正文: 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元素配置CSS代码:position: fixed;bottom: 0; |