“CSS plusieurs arrière-plans” Réponses codées

CSS plusieurs arrière-plans

#example1 {
  background-image: url(img_flwr.gif), url(paper.gif);
  background-position: right bottom, left top;
  background-repeat: no-repeat, repeat;
}
code composer

HTML à fond multiple

.multi-bg-example {
  width: 100%;
  height: 400px;
  background-image: url(https://mdn.mozillademos.org/files/11305/firefox.png),
      url(https://mdn.mozillademos.org/files/11307/bubbles.png),
      linear-gradient(to right, rgba(30, 75, 115, 1), rgba(255, 255, 255, 0));
  background-repeat: no-repeat,
      no-repeat,
      no-repeat;
  background-position: bottom right,
      left,
      right;
}
Average Angelfish

Réponses similaires à “CSS plusieurs arrière-plans”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code