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

HTML代码

<div id="lf_bg" style="background-image: url(images/bg.jpg);"></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; }