element-paint-multiple-backgrounds-01-ref.html 543 B

12345678910111213141516171819202122232425262728293031
  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-linear-gradient(lime,lime) top left no-repeat,
  14. -moz-linear-gradient(green,green) top right no-repeat red;
  15. background-size: 100px 100px;
  16. }
  17. div > div {
  18. width: 100px;
  19. height: 100px;
  20. }
  21. </style>
  22. </head>
  23. <body style="margin:0">
  24. <div id="box"></div>
  25. </body>
  26. </html>