How to keep ratio of div

Method 1

css

.div {
  height: 0;
  padding-bottom: 56.25%; /* 16:9, for an aspect ratio of 1:1 change to this value to 100% */ 
}
Aspect RatioPadding-Bottom
1:1100%
16:956.25%
4:375%
3:266.66%
8:562.5%

Method 2

css

div {
  aspect-ratio: 2/3;
}

Tailwind

html

<div class="aspect-[2/3]"></div>