JSFiddle - React, Tailwind, and code Playground

by Mawel Don

HTML

<div id="parent">
    <div class="child">hello world</div>
    <div class="child">hello world</div>
    <div class="child">hello world</div>
</div>

CSS

#parent {
    width: 50vw;
    height: 50vh;
    background-color: gray;
    display: flex;
    flex-direction: column;
}

.child {
    margin: auto
}