background是一个很重要的css属性
总共有9个不同的属性,1个background总览,其他的8个为分支:
1. background:
此为省略写法,可以书写其他所有的8个属性在一个当中;
2. background-color; 颜色
3. background-image; 背景图
url(地址)
4.background-position; 背景图位置
位置有三种单位:
(PX,%,单词)
5.background-repeat 背景图平铺
repeat; 全面平铺
no-repeat; 不平铺
repeat-x: x轴平铺
repeat-y: y轴平铺
6.background-attachment 背景图固定
只有2中选择:
fixed 始终在一个位置;
scroll 在整个文档中的位置,类似于absolute
其他3个就是CSS3的新加属性
分别为clip(绘制区域),origin(背景图区域定位),size(背景图大小【有4种值:
cover单图填满,contain最大化,%,px】)
时间: 2024-10-08 09:30:19