grid same height for second block via aspect ratio

<div class="grid grid-cols-[5fr_3fr] gap-10">
  <div class="h-full overflow-hidden"></div>

  <div class="aspect-[4/5] border border-(--_color) rounded-4xl p-3">
    <div class="rounded-3xl bg-(--_color) size-full"></div>
  </div>
</div>


hello there i wanna first block which is h-full to have same height as second block (which is have aspect ratio) so i can apply overflow scroll to first block
Was this page helpful?