码迷,mamicode.com
首页 > 其他好文 > 详细

background 背景

时间:2017-04-30 14:12:18      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:repeat-x   背景颜色   样式   ack   position   scroll   pre   像素   不重复   

1、背景颜色

background-color: red;

2、背景图片

background-image: url(img/1.jpg);

3、背景重复

background-repeat: no-repeat;/*不重复*/
background-repeat: repeat;/*重复*/
background-repeat: repeat-x;/*X轴重复*/
background-repeat: repeat-y;/*Y轴重复*/

4、背景定位:可以用像素和英文

background-position: 10px 10px;
background-position: center top;

5、背景是否滚动

background-attachment: fixed;  /*相对可视区固定位置*/
background-attachment: scroll;  /*随滚轮滚动*/

6、复合样式:没有顺序之分,编写习惯如下

background: red url(img/1.jpg) no-repeat center top fixed;

 

background 背景

标签:repeat-x   背景颜色   样式   ack   position   scroll   pre   像素   不重复   

原文地址:http://www.cnblogs.com/halai/p/6789261.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!