1、背景属性
background-color:背景颜色
background-image:背景图片
background-repeat:图片填充(常用属性值:repeat-x repeat-y no-repeat)
background-size:背景图片大小
background-position:背景位置
background-origin:规定图片的定位区域
(背景的复合属性:
/*
background-image: url("../../img/3.jpg");
background-repeat: no-repeat;
background-position: 20px 20px;*/
background: red url("../../img/3.jpg") no-repeat
20px 20px;
)
即黑色部分以及黄色部分显示效果是一样。