table-cell-breaking-3a.html (817B)
1 <!DOCTYPE html> 2 <html class="reftest-paged"> 3 <meta charset="utf-8"> 4 <title>CSS Fragmentation Test: breaking of an auto block-size table-cell</title> 5 <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com"> 6 <link rel="author" title="Mozilla" href="https://www.mozilla.org/"> 7 8 <style> 9 @page { size:5in 3in; margin:0.5in; } 10 11 html, body { 12 font-size: 12pt; margin: 0; 13 } 14 15 table { 16 border-spacing: 0; 17 } 18 19 td { 20 width: 1in; 21 background: green; 22 padding: 0.25in; 23 border: 0.25in solid gray; 24 } 25 </style> 26 27 <table> 28 <tbody> 29 <tr> 30 <!-- The <div> can fit on the first page, but <td>'s bottom border 31 and padding cannot fit. --> 32 <td><div style="height: 1.5in; background: yellow;"></div></td> 33 </tr> 34 </tbody> 35 </table> 36 </html>