table-grid-item-dynamic-004-ref.html (510B)
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 width: 500px; 18 height: 100%; 19 box-sizing: content-box; 20 background-color: yellow; 21 } 22 </style> 23 <div> 24 <table> 25 <thead> 26 <tr> 27 <th>Relayout shouldn't grow this table</th> 28 </tr> 29 </thead> 30 </table> 31 </div>