Multiple background images in one div

后端 未结 4 2068
不知归路
不知归路 2020-12-11 01:26

I made a ribbon in Photoshop. The ribbon has three part. The left and right parts are a fixed 10px. The middle sectoin is a repeatable pattern.

Is it possible to com

4条回答
  •  渐次进展
    2020-12-11 02:17

    As @j08691 pointed out, this is only possible in CSS3

    #your-selector {
      background-image: url(one.png), url(two.png);
      background-position: center bottom, left top;
      background-repeat: no-repeat;
      width: 300px;
      height: 350px;
    }
    

    See tutorial

提交回复
热议问题