contain-size-break-003.html (414B)
1 <!DOCTYPE html> 2 <html class="reftest-paged"> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Test: 'contain: size' should not affect breaking in tables or table elements.</title> 6 <style> 7 .contain { 8 contain:size; 9 } 10 </style> 11 </head> 12 <body> 13 <table class="contain"> 14 <tr> 15 <td style="height:4in; width: 50px; background:orange;"> 16 </td> 17 </tr> 18 </table> 19 </body> 20 </html>