MP Grid (Copy 9228) (Copy 9498)
✨ YOSSAWAN THATSANA
<style> body{ font-family:sans-serif; margin:0; } .wrapper { background:pink; display: grid; grid-template-columns:repeat(3,1fr); /* grid-template-rows:70px auto 10vh 20vh; */ grid-auto-rows:200px; grid-gap:.5rem; } .wrapper div{ background:yellow; padding:1em; box-shadow:0px 0px 15px red inset; } .Two{ grid-column:2/4; } /* .Nine{ grid-column:2/3; grid-row:4/6; } */ </style> <div class="wrapper"> <div class="One"> One </div> <div class="Two"> Two </div> </div>