網(wǎng)頁或表格背景圖片不重復(fù)且居下代碼
發(fā)布日期:[2009/12/12] 編輯:奇億廣州網(wǎng)站建設(shè)
網(wǎng)頁背景圖或?qū)颖尘皥D或表格背景圖片不重復(fù)且一直居下的代碼:
CSS代碼部分
.tabbg {
background-attachment: scroll;
background-image: url(images/tabbg.gif);
background-repeat: no-repeat;
background-position: left bottom;
}
調(diào)用:class="tabbg"
注意:CSS代碼中的background-position: left bottom;就是定義背景圖片的位置為左下,可根據(jù)具體需要做調(diào)整,如右上right top;左上left top;右下right bottom;等等。