table-grid-item-dynamic-003-ref.html (494B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>CSS Test Reference</title> 4 <style> 5 html,body { 6 color:black; background-color:white; font:16px/1 monospace; padding:0; margin:0; 7 } 8 9 div { 10 display: grid; 11 height: 100px; 12 background-color: lime; 13 } 14 15 table { 16 padding-top: 100px; 17 height: 100%; 18 box-sizing: content-box; 19 background-color: yellow; 20 } 21 </style> 22 <div> 23 <table> 24 <thead> 25 <tr> 26 <th>Relayout shouldn't grow this table</th> 27 </tr> 28 </thead> 29 </table> 30 </div>