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

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