纯CSS控制背景图片100%自适应填充布局

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

HTML代码

<div id="lf_bg" style="background-image: url(images/bg.jpg);"&gt;&lt;/div&gt;

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;
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章