CSS实现背景图片固定且底部显示的方法及背景图显示方式解析

发布时间:2020-06-10编辑:脚本学堂
文中主要讲了背景图片在网页中各种各样的显示方式,并且举一个背景图片固定且底部显示的例子供大家学习,需要的朋友参考一下。

CSS实现固定DIV层背景图片且底部显示./*CSS缩写形式*/
Css代码
 

复制代码 代码示例:
1.div {
2.background:url(/images/about_bg.jpg) no-repeat fixed;
3.background-position-y:bottom;
4.}
 

背景图片的各种显示方式如下:
 

复制代码 代码示例:
1.div {
2.background-image:url(/images/bg.jpg);  /*自行修改背景图片路径*/
3.background-repeat:no-repeat;  /*背景图片不重复显示*/
4.background-repeat:repeat;  /*背景图片横向及纵向重复*/
5.background-repeat:repeat-x;  /*背景图片横向重复*/
6.background-repeat:repeat-y;  /*背景图片纵向重复*/
7.background-attachment:fixed;  /*固定背景图片*/
8.background-attachment:scroll;  /*滚动背景图片*/
9.background-position-x:left;  /*背景图片在横向的最左方显示*/
10.background-position-x:right;  /*背景图片在横向的最右方显示*/
11.background-position-y:top;  /*背景图片在纵向的最上方显示*/
12.background-position-y:bottom;  /*背景图片在纵向的最下方显示*/
13.}