多个背景图像

在 CSS3 中,我们可以在同一个元素中堆叠多个背景。

#mydiv {
  background-image: url(img_1.png), /* top image */
                    url(img_2.png), /* middle image */
                    url(img_3.png); /* bottom image */
  background-position: right bottom,
                       left top,
                       right top;
  background-repeat: no-repeat,
                     repeat,
                     no-repeat;
}

图像将堆叠在一起,第一个背景在顶部,最后一个背景在背面。img_1 将位于顶部,img_2img_3 位于底部。

我们也可以使用背景速记属性:

#mydiv {
  background: url(img_1.png) right bottom no-repeat,
              url(img_2.png) left top repeat,
              url(img_3.png) right top no-repeat;
}

我们还可以堆叠图像和渐变:

#mydiv {
  background: url(image.png) right bottom no-repeat,
              linear-gradient(to bottom, #fff 0%,#000 100%);
}