我们都知道可以用 CSS 给 background
添加背景色和背景图:
background: #F00 url("pic.png") no-repeat;
// 红色 背景图片 不重复
那么可以给元素设置两个或者多个背景图吗?答案是可以:
添加两张或者多张背景图:
代码语言:javascript复制background: url("bg.png") no-repeat top center,
url("pic.png") no-repeat bottom center;
这样就可以了。