element-paint-multiple-backgrounds-01a.html 645 B

12345678910111213141516171819202122232425262728293031323334
  1. <!--
  2. Any copyright is dedicated to the Public Domain.
  3. http://creativecommons.org/licenses/publicdomain/
  4. Multiple -moz-element background images
  5. -->
  6. <!DOCTYPE html>
  7. <html>
  8. <head>
  9. <style>
  10. #box {
  11. height: 100px;
  12. width: 200px;
  13. background: -moz-element(#lime) top left no-repeat,
  14. -moz-element(#green) top right no-repeat red;
  15. }
  16. div > div {
  17. width: 100px;
  18. height: 100px;
  19. }
  20. </style>
  21. </head>
  22. <body style="margin:0">
  23. <div id="box"></div>
  24. <div style="overflow:hidden; height:0">
  25. <div id="lime" style="background-color: lime"></div>
  26. <div id="green" style="background-color: green"></div>
  27. </div>
  28. </body>
  29. </html>