下面代碼實(shí)現(xiàn)div層背景圖片在底部顯示:
div {
background:url(/images/bg.jpg) no-repeat fixed;
background-position-y:bottom;
}
代碼詳解:
div {
background-image:url(/images/bg.jpg); /*設(shè)置div層的背景圖片*/
background-repeat:no-repeat; /*背景圖片不重復(fù)顯示*/
background-repeat:repeat; /*背景圖片橫向及縱向重復(fù)*/
background-repeat:repeat-x; /*背景圖片橫向重復(fù)*/
background-repeat:repeat-y; /*背景圖片縱向重復(fù)*/
background-attachment:fixed; /*固定背景圖片*/
background-attachment:scroll; /*滾動(dòng)背景圖片*/
background-position-x:left; /*背景圖片在橫向的最左方顯示*/
background-position-x:right; /*背景圖片在橫向的最右方顯示*/
background-position-y:top; /*背景圖片在縱向的最上方顯示*/
background-position-y:bottom; /*背景圖片在縱向的最下方顯示*/
}
新聞熱點(diǎn)
疑難解答
圖片精選