JSFiddle - React, Tailwind, and code Playground
by janjarfalk
HTML
<div id="container">
<div id="element">
some text
</div>
</div>
<div id="container">
<div id="element">
some text
</div>
</div>
CSS
#container {
float: left;
display: inline-block;
width: 47%;
background-color: red;
margin-top: 2%;
margin-left: 2%;
}
#element {
height: 0;
padding-bottom: 100%;
background-color: silver;
}