mask-composite-1-ref.html (787B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS mask-composite reference</title> 6 <link rel="author" title="CJ Ku" href="mailto:cku@mozilla.com"> 7 <link rel="author" title="Mozilla" href="https://www.mozilla.org"> 8 <style type="text/css"> 9 div { 10 position: absolute; 11 margin: 0px; 12 padding: 0px; 13 width: 100px; 14 height: 100px; 15 top: 10px; 16 } 17 18 div.add { 19 left: 10px; 20 background-image: url(support/blue-100x50-transparent-100x50.svg); 21 } 22 23 div.intersect { 24 left: 230px; 25 background-image: url(support/blue-100x50-transparent-100x50.svg); 26 } 27 </style> 28 </head> 29 <body> 30 <div class="add"></div> 31 <div class="intersect"></div> 32 </body> 33 </html>