1442018-1.html (799B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <script> 4 document.addEventListener("DOMContentLoaded", () => { 5 SpecialPowers.wrap(window).printPreview()?.close(); 6 }) 7 </script> 8 9 <style> 10 @page { 11 /* Default reftest-paged page size: */ 12 size: 5in 3in; 13 margin: 0.5in; /* This leaves 2in of height for content */ 14 } 15 body { margin: 0; } 16 17 table { 18 border-collapse: collapse; 19 border: 5px solid black; 20 } 21 th { 22 height: 0.5in; 23 border-bottom: 5px solid green; 24 } 25 td { 26 height: 1in; 27 width: 2in; 28 border-bottom: 5px solid orange; 29 } 30 .float { float: left; } 31 .clear { clear: both; } 32 </style> 33 34 <div class="float"> 35 <table> 36 <thead> 37 <tr><th></th></tr> 38 </thead> 39 <tbody> 40 <tr><td></td></tr> 41 <tr><td></td></tr> 42 </tbody> 43 </table> 44 </div> 45 <div class="clear"></div>