设置多重背景图像
设置多重背景图像
01
设置多重背景图像
在CSS3中,通过background-im、age等属性提供多个属性值可以实现多重背景图像效果,各属性值之间用逗号隔开。
background:
background-color
background-image
background-position
background-repeat
background-attachment
background-origin //css3新增属性
background-clip //css3新增属性
background-size //css3新增属性
描述
说明 (css3多重背景属性)
设置多重背景图像
div {
width: 800px;
height: 600px;
background:url(HTML1.jpg) no-repeat ,
url(HTML2.jpg) no-repeat left bottom,
url(HTML3.jpg) no-repeat 10px 15px;
background-color:yellow;
}
示例:设置多重背景图像
背景复合属