Can you layer pictures on top of each other on a webpage?

后端 未结 7 1978
再見小時候
再見小時候 2020-12-23 23:34

I want to build a website that is a \"dress up\" game where you can click on different accessories and they will layer on top of each other.

Because it\'s a little d

7条回答
  •  眼角桃花
    2020-12-23 23:58

    CSS3 supports multiple background layers

    #example1 {
      width: 500px;
      height: 250px;
      background-image: url(sheep.png), url(betweengrassandsky.png);
      background-position: center bottom, left top;
      background-repeat: no-repeat;
    }
    

提交回复
热议问题