JSFiddle - React, Tailwind, and code Playground

by Hakan Bilgin

HTML

<div class="box"></div>

CSS

.box{
	position: relative;
	width: 50%;
	background: silver;
}
.box:before{
	content: "";
	display: block;
	padding-top: 100%;
}