- 语法
background-color:颜色值; 默认的值是 transparent 透明的
背景图片(image)
- 语法
background-image : none | url (url)
作用 | |
---|---|
none | 无背景图(默认的) |
url |
background-image : url(images/demo.png);
- 语法
background-repeat : repeat | no-repeat | repeat-x | repeat-y
作用 | |
---|---|
repeat | 背景图像在纵向和横向上平铺(默认的) |
no-repeat | 背景图像不平铺 |
repeat-x | 背景图像在横向上平铺 |
repeat-y |
- 语法
background-position : length || length
background-position : position || position
值 | |
---|---|
length | 百分数 | 由浮点数字和单位标识符组成的长度值 |
position | top | center | bottom | left | center | |
注意:
position 后面是x坐标和y坐标。 可以使用方位名词或者 精确单位。
如果指定两个值,两个值都是方位名字,则两个值前后顺序无关,比如left top和top left效果一致
如果只指定了一个方位名词,另一个值默认居中对齐。
如果position 后面是精确坐标, 那么第一个,肯定是 x 第二的一定是y
如果只指定一个数值,那该数值一定是x坐标,另一个默认垂直居中
背景附着
-
- 语法
background-attachment : scroll | fixed
作用 | |
---|---|
scroll | 背景图像是随对象内容滚动 |
fixed |
背景简写
-
-
- 语法:
background: transparent url(image.jpg) repeat-y scroll center top ;
背景透明(CSS3)
- 语法
background: rgba(0, 0, 0, 0.3);
我们习惯把0.3 的 0 省略掉 这样写 background: rgba(0, 0, 0, .3);
注意: 背景半透明是指盒子背景半透明, 盒子里面的内容不受影响