mask-repeat-3-ref.html (929B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Masking: mask-repeat: repeated 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.outer { 10 width: 150px; 11 height: 150px; 12 border: 1px solid black; 13 } 14 15 .color { 16 background-color: purple; 17 } 18 19 #round { 20 width: 150px; 21 height: 150px; 22 } 23 24 #round-x { 25 width: 150px; 26 height: 50px; 27 } 28 29 #round-y { 30 width: 50px; 31 height: 150px; 32 } 33 </style> 34 </head> 35 <body> 36 <div class="outer"><div class="color" id="round"></div></div> 37 <div class="outer"><div class="color" id="round-x"></div></div> 38 <div class="outer"><div class="color" id="round-y"></div></div> 39 </body> 40 </html>