網頁或表格背景圖片不重復且居下代碼
發布日期:[2009/12/12] 編輯:奇億廣州網站建設
網頁背景圖或層背景圖或表格背景圖片不重復且一直居下的代碼:
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;等等。



















