mask-image-2-ref.html (524B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Masking: mask-image: mask layer image</title> 6 <link rel="author" title="Astley Chen" href="mailto:aschen@mozilla.com"> 7 <link rel="author" title="Mozilla" href="https://www.mozilla.org"> 8 <style type="text/css"> 9 div { 10 background-image: linear-gradient(rgba(128,0,128,0), rgba(128,0,128,1)); 11 width: 100px; 12 height: 100px; 13 } 14 </style> 15 </head> 16 <body> 17 <div></div> 18 <div></div> 19 </body> 20 </html>