abspos-breaking-008.html (469B)
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 { margin: 0; padding: 0; } 7 div { 8 box-decoration-break: clone; 9 position: absolute; 10 top: 120px; 11 border: 10px solid blue; 12 width: 50px; 13 height: 200px; 14 clip:rect(130px, auto, auto, 5px); 15 } 16 </style> 17 </head> 18 <body> 19 <div></div> 20 </body> 21 </html>