HTML网页BODY中如何设置背景图拉伸的最有效方法
时间:2011-05-04 来源:典藏
HTML部分:
<div id="BodyBg">
<img src="ImgBg.jpg" class="stretch" alt="" />
</div>
CSS部分:
#BodyBg{
width: 100%;
position: absolute;
left: 0px;
top: 0px;
z-index: 0;
}
.stretch {
width:100%;
}
相关阅读 更多 +