abspos-breaking-010.html (470B)
1 <!DOCTYPE html> 2 <html class="reftest-paged"> 3 <head> 4 <title>AbsPos Pagination, with clip:rect() and box-decoration-break:clone</title> 5 <style type="text/css"> 6 html, body, pre { margin: 0; padding: 0; } 7 pre { 8 box-decoration-break: clone; 9 position: absolute; 10 top: 50%; 11 border: 10px solid blue; 12 width: 50px; 13 height: 300px; 14 clip:rect(5px, auto, 50px, 5px); 15 } 16 </style> 17 </head> 18 <body> 19 <pre></pre> 20 </body> 21 </html>