mix-blend-mode-parent-with-3D-transform-ref.html (1334B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Reftest Reference</title> 6 <link rel="author" title="Mirela Budăeș" href="mailto:mbudaes@adobe.com"> 7 <link rel="author" title="Ion Roșca" href="mailto:rosca@adobe.com"> 8 <link rel="reviewer" title="Mihai Țică" href="mailto:mitica@adobe.com"> 9 <style type="text/css"> 10 .parent { 11 background: aqua;/*rgb(0,255,255);*/ 12 width: 140px; 13 height: 140px; 14 padding-top: 1px; 15 transform:rotateX(20deg); 16 } 17 .blended { 18 background: fuchsia;/*rgb(255,0,255);*/ 19 margin-top: 20px; 20 margin-left: 20px; 21 width: 200px; 22 height: 200px; 23 } 24 .childOfBlended { 25 background: yellow;/*rgb(255,255,0);*/ 26 width: 120px; 27 height: 120px; 28 } 29 </style> 30 </head> 31 <body> 32 <p>You should see a fuchsia square overlapping an aqua square. <br> 33 The overlapping area should be yellow. </p> 34 <div class="parent"> 35 <div class="blended"> 36 <div class="childOfBlended"></div> 37 </div> 38 </div> 39 </body> 40 </html>