JSFiddle - React, Tailwind, and code Playground

by Grzegorz Rozdzialik

HTML

<div id="aboutContainer">

<div class="aboutBox">
<p>
Text input
</p>
</div>

<div class="aboutBox">
<p>
Text input
</p>
</div>

CSS

#aboutContainer {
    display: flex;
    width: 94%;
    max-width: 1000px;
    margin: auto;
    background-color: red;
}
.aboutBox {
    width:32.333%;
    padding:10px;
    margin:0 0.5%;
    border:1px solid #999;
    box-sizing:border-box;
    background-color:#efefef;
 }