JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="container__wrapper">
<div class="container__content"></div>
</div>
</div>
CSS
.container {
width: 20%;
}
.container__wrapper {
overflow: hidden;
position: relative;
width: 100%;
padding-bottom: 100%; // пропорции блока определяются здесь
}
.container__content {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #f00;
}