mask-position-5-ref.html (860B)
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: 120px; 12 height: 120px; 13 } 14 15 #inner1 { 16 margin-left: 35px; 17 margin-top: 0px; 18 width: 50px; 19 height: 50px; 20 background-color: purple; 21 } 22 23 #inner2 { 24 margin-left: 35px; 25 margin-top: 20px; 26 width: 50px; 27 height: 50px; 28 background-color: purple; 29 } 30 </style> 31 </head> 32 <body> 33 <div id="outer"> 34 <div id="inner1"></div> 35 <div id="inner2"></div> 36 </div> 37 </body> 38 </html>