05-14-multiple-backgrounds.html 627 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Multiple backgrounds on a single element</title>
  6. <style>
  7. .multi-bg {
  8. width: 300px;
  9. height: 200px;
  10. background-image: url(img/spades.png),
  11. url(img/hearts.png),
  12. url(img/diamonds.png),
  13. url(img/clubs.png);
  14. background-position: left top, right top, left bottom, right bottom;
  15. background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  16. background-color: pink;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div class="multi-bg">
  22. </div>
  23. </body>
  24. </html>