JSFiddle - React, Tailwind, and code Playground
by rayabu1234
HTML
<div id="container">
<div id="subsSection">
<div class="leftSection">ss sd sd sd sd sds</div>
<div class="rightSection">ss sd sds ds dsd dfs</div>
</div>
</div>
CSS
#container{
background-color: blueviolet;
height: 200px;
}
.leftSection{
background-color: green;
display: inline-block;
}
.rightSection{
background-color: orange;
display: inline-block;
}
#subsSection{
background-color: yellow;
display: block;
text-align: center;
min-width: 300px;
}
}