当前位置: 代码迷 >> HTML/CSS >> (转)HTML网页BODY中怎么设置背景图拉伸的最有效方法
  详细解决方案

(转)HTML网页BODY中怎么设置背景图拉伸的最有效方法

热度:116   发布时间:2012-09-23 10:28:11.0
(转)HTML网页BODY中如何设置背景图拉伸的最有效方法
http://www.mockte.com/rewrite.php/read-372.html

<body>
    <div id="bodybg"> 
        <img src="imgbg.jpg" class="stretch" alt="" /> 
    </div>
......
......
</body>

然后添加如下CSS:
#bodybg { 
    width: 100%;  
    height: 100%;  
    position: absolute;  
    left: 0px;  
    top: 0px;  
    z-index: 0; 
} 
 
.stretch { 
    width:100%; 
    height:100%; 
}



很有效的方法!缺点:图片会变形。
  相关解决方案