mask-position-3-ref.html (674B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Masking: mask-position: position 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 #outer { 10 border: 1px solid black; 11 width: 100px; 12 height: 100px; 13 } 14 15 #inner { 16 margin-left: 25px; 17 margin-top: 10px; 18 width: 50px; 19 height: 50px; 20 background-color: purple; 21 } 22 </style> 23 </head> 24 <body> 25 <div id="outer"> 26 <div id="inner"></div> 27 </div> 28 </body> 29 </html>