JSFiddle - React, Tailwind, and code Playground
by Byron Bai
HTML
<div class="parent">
<a class="child">123123123</a>
<a class="child">123123123</a>
<a class="child">123123123</a>
</div>
CSS
.parent{
background: red;
width: 100%;
height: 50px;
text-align: center;
}
.child {
background: green;
width: 50%;
height: 50px;
}