abspos-breaking-004.html 403 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html class="reftest-print">
  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. clip:rect(200px, auto, auto, 5px);
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <div></div>
  19. </body>
  20. </html>