重要的人越来越少,剩下的越来越重要。拼你想要的,争你没有的。要想人前显贵,就得背后遭罪。最穷不过要饭,不死终会出头!
下面代码实现div层背景图片在底部显示:
复制代码
代码如下:div {
background:url(/images/bg.jpg) no-repeat fixed;
background-position-y:bottom;
}
代码详解:
复制代码
代码如下:div {
background-image:url(/images/bg.jpg); /*设置div层的背景图片*/
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; /*背景图片在纵向的最下方显示*/
}
以上就是在div底部显示背景图片如何实现代码。有时,你不得不相信,有些人注定只能停留在你的心中,却不克不及留在你的生活中。更多关于在div底部显示背景图片如何实现代码请关注haodaima.com其它相关文章!