<!DOCTYPE html> <html> <head> <style> #grid{ display: grid; height:250px; grid-template-rows: 50px 200px max-content; background-color:lightgreen; } #grid > #item1{ max-height:20px; grid-row:3/4; background-color:lightgray; } </style> </head> <body> <div id="grid"> <div id="item1"> <p>item1</p> <p>item1</p> </div> </div> </body> </html>
Run
×
Share