JSFiddle - React, Tailwind, and code Playground
HTML
<div class="center-justified"><p>
<a href="1">First </a><a href="2">Second</a><br>
<a href="3">Third <a href="4">Fourth </a><a href="5">Fifth</a>
</p>
</div>
CSS
.center-justified {
margin: 0 auto;
text-align: justify;
width: 30em;
}
a {
text-decoration: none;
}