JSFiddle - React, Tailwind, and code Playground
by ordette
HTML
<div class='container'>
<div>
content here
</div>
</div>
SCSS
.container {
display: flex;
background-color: skyblue;
border: 1px dotted red;
padding: 1em;
height: 300px;
justify-content: space-around;
div {
padding:2em;
background-color: lightgrey;
border: 1px solid black;
align-self: center;
}
}