纯CSS控制背景图片100%自适应填充布局
更新:HHH   时间:2023-1-7


在写主题样式的时候经常会碰到用背景图铺满整个背景的需求,这里分享下使用方法

HTML代码

<div id="lf_bg" ></div>

CSS样式
#lf_bg{
position:fixed;
top: 0;
left: 0;
width:100%;
height:100%;
min-width: 1000px;
z-index:-10;
zoom: 1;
background-attachment: fixed;
background-color: #fff;
background-repeat: no-repeat;
background-size: cover;
-webkit-background-size: cover;
-o-background-size: cover;
background-position: center 0;
}

返回web开发教程...