CSS设置background添加背景色两张或多张背景图

我们都知道可以用 CSS 给 background 添加背景色和背景图:

background: #F00 url("pic.png") no-repeat;
         // 红色 背景图片 不重复

那么可以给元素设置两个或者多个背景图吗?答案是可以:

添加两张或者多张背景图:

background: url("bg.png") no-repeat top center,
            url("pic.png") no-repeat bottom center;

这样就可以了。

未经允许不得转载:前端资源网 - w3h5 » CSS设置background添加背景色两张或多张背景图

赞 (1)
分享到: +

评论 沙发

Avatar

换个身份

  • 昵称 (必填)
  • 邮箱 (选填)