电话客服
186-2323-2332
网页背景图或层背景图或表格背景图片不重复且一直居下的代码:
CSS代码部分
.
tabbg {
background-attachment: scroll;
background-image: url(images/tabbg.gif);
background-repeat: no-repeat;
background-position: left bottom;
}
调用:class='tabbg'
注意:CSS代码中的background-position: left bottom;就是定义背景图片的位置为左下,可根据具体需要做调整,如右上right top;左上left top;右下right bottom;等等。