mask-invalidation-1-ref.html (558B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Masking: mask repainting.</title> 6 <style type="text/css"> 7 div { 8 background-color: purple; 9 position: absolute; 10 margin: 1px 2px 3px 4px; 11 border: solid purple; 12 width: 44px; 13 height: 9px; 14 } 15 </style> 16 </head> 17 <body> 18 <div class="outer" style="top: 15px; left: 15px;"></div> 19 <div class="outer" style="top: 15px; left: 115px;"></div> 20 <div class="outer" style="top: 15px; left: 215px;"></div> 21 </body> 22 </html>