abspos-breaking-007.html (472B)
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: 120px; 11 border: 10px solid blue; 12 width: 50px; 13 height: 160px; 14 clip:rect(3px, auto, auto, 5px); 15 } 16 </style> 17 </head> 18 <body> 19 <pre></pre> 20 </body> 21 </html>