下面代码实现div层背景图片在底部显示:
复制代码代码如下:
div {
background:url(/images/bg.jpg) no-repeat fixed;
background-position-y:bottom;
}
代码详解:
复制代码代码如下:
div {
background-image:url(/images/bg.jpg);
background-repeat:no-repeat;
background-repeat:repeat;
background-repeat:repeat-x;
background-repeat:repeat-y;
background-attachment:fixed;
background-attachment:scroll;
background-position-x:left;
background-position-x:right;
background-position-y:top;
background-position-y:bottom;
}
