mix-blend-mode-nested-976533-ref.html 687 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <!DOCTYPE HTML>
  2. <head>
  3. <style>
  4. .parent {
  5. width: 200px;
  6. height: 200px;
  7. position: absolute;
  8. z-index: 1;
  9. background-color: #00ff00;
  10. }
  11. .intermediate {
  12. width: 100px;
  13. height: 100px;
  14. margin-left:50px;
  15. background-color: #ffffff;
  16. }
  17. .child {
  18. width: 100px;
  19. height: 100px;
  20. margin-left:50px;
  21. background-color: #00ffff;
  22. }
  23. .grandchild {
  24. width: 50px;
  25. height: 100px;
  26. margin-left: 50px;
  27. background-color: #0000ff;
  28. }
  29. body {
  30. margin:0px;
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <div class="parent">
  36. <div class="intermediate">
  37. <div class="child">
  38. <div class="grandchild"></div>
  39. </div>
  40. </div>
  41. </div>
  42. </body>