abspos-breaking-004-ref.html (628B)
1 <!DOCTYPE html> 2 <html class="reftest-paged"> 3 <head> 4 <title>AbsPos Pagination, with clip:rect()</title> 5 <style type="text/css"> 6 html, body { margin: 0; padding: 0; } 7 div { 8 position: absolute; 9 top: 120px; 10 border: 10px solid blue; 11 width: 50px; 12 height: 300px; 13 } 14 #mask1 { 15 border-color: white; 16 background: white; 17 clip:rect(0px, auto, 200px, 0px); 18 } 19 #mask2 { 20 border-color: white; 21 background: white; 22 clip:rect(200px, 5px, auto, 0px); 23 } 24 </style> 25 </head> 26 <body> 27 <div></div><div id="mask1"></div><div id="mask2"></div> 28 </body> 29 </html>