JSFiddle - React, Tailwind, and code Playground
by Victor
HTML
<div class="parent">
<div class="child">
<a href="">Testing</a>
<a href="">Testing</a>
<a href="">Testing</a>
<a href="">Testing</a>
<a href="">Testing</a>
<a href="">Testing</a>
</div>
</div>
CSS
.parent {
width: 100%;
}
.child {
display:flex;
width: 100%;
}
a {
font-size: 40px;
padding: 20px;
color:red;
}