table-grid-item-dynamic-002-ref.html (467B)
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 background-color: lime; 12 } 13 14 table { 15 min-height: 100px; 16 } 17 </style> 18 <div> 19 <table> 20 <caption>Table caption</caption> 21 <thead> 22 <tr> 23 <th>This table should shrink after setting a smaller min-height</th> 24 </tr> 25 </thead> 26 </table> 27 </div>