HTML网页BODY中如何设置背景图拉伸的最有效方法

HTML部分:

id="BodyBg">
src="ImgBg.jpg"class="stretch"alt=""/>

CSS部分:

#BodyBg{
width
:100%;
height
:100%;
position
:absolute;
left
:0px;
top
:0px;
z
-index:0;
}

.stretch{
width
:100%;
height
:100%;
}
http://www.cnblogs.com/seamar/archive/2011/05/04/2036279.html

你可能感兴趣的:(HTML网页BODY中如何设置背景图拉伸的最有效方法)