background-blending-multiple-images-ref.html 546 B

12345678910111213141516171819202122232425262728293031323334
  1. <!--
  2. Any copyright is dedicated to the Public Domain.
  3. http://creativecommons.org/publicdomain/zero/1.0/
  4. -->
  5. <html>
  6. <style>
  7. .reftest {
  8. width: 100px;
  9. height: 100px;
  10. float:left;
  11. }
  12. .first {
  13. background-color: rgb(255, 0, 255);
  14. }
  15. .second {
  16. background-color: rgb(0, 0, 255);
  17. }
  18. .third {
  19. background-color: rgb(0, 255, 255);
  20. }
  21. .fourth {
  22. background-color: rgb(0, 255, 0);
  23. }
  24. </style>
  25. <div class="reftest first"></div>
  26. <div class="reftest second"></div>
  27. <div class="reftest third"></div>
  28. <div class="reftest fourth"></div>
  29. </html>