?????background-color 定义元素的背景颜色
?????background-color:颜色值;
?????元素背景颜色默认值是 transparent(透明)
?????background-color:transparent;
背景色半透明
?????background: rgba(0, 0, 0, 0.3);
?????background-image 定义元素的背景图片
?????background-image : none | url (url)
实际开发常见于 logo 或者一些装饰性的小图片或者是超大的背景图片, 优点是非常便于控制位置. (精灵图也是一种运用场景)
注意:背景图片后面的地址,千万不要忘记加 URL, 同时里面的路径不要加引号
。
?????background-repeat 设置元素背景图像的平铺
?????background-repeat: repeat | no-repeat | repeat-x | repeat-y
repeat-x
?????background-position 属性可以改变图片在背景中的位置
?????background-position: x y;
参数代表的意思是:x 坐标和 y 坐标。 可以使用 方位名词 或者 精确单位
1、参数是方位名词
如果指定的两个值都是方位名词
,则两个值前后顺序无关
,比如 left top 和 top left 效果一致
如果只指定了一个方位名词,另一个值省略,则第二个值默认居中对齐
2、参数是精确单位
如果参数值是精确坐标,那么第一个肯定是 x 坐标,第二个一定是 y 坐标
如果只指定一个数值,那该数值一定是 x 坐标,另一个默认垂直居中
3、参数是混合单位
如果指定的两个值是精确单位和方位名词混合使用,则第一个值是 x 坐标,第二个值是 y 坐标
????background-attachment 属性设置背景图像是否固定
或者随着页面的其余部分滚动。
????background-attachment : scroll | fixed
????background: 背景颜色 背景图片地址 背景平铺 背景图像滚动 背景图片位置;
????background: transparent url(image.jpg) repeat-y fixed top ;