mix-blend-mode-culling-1207041.html 360 B

123456789101112131415161718192021222324
  1. <!DOCTYPE HTML>
  2. <head>
  3. <style>
  4. .parent {
  5. width: 200px;
  6. height: 200px;
  7. isolation: isolate;
  8. background: orange;
  9. }
  10. .child {
  11. width: 200px;
  12. height: 200px;
  13. mix-blend-mode: screen;
  14. background: green;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <div class="parent">
  20. <div class="child">
  21. </div>
  22. </div>
  23. </body>