JSFiddle - React, Tailwind, and code Playground
HTML
<div class='parent'><a href="google.com">google.com</a><a href="google.com">google.com</a><a href="google.com">google.com</a>
</div>
CSS
html, body {
width:100%;
height:100%;
}
.parent {
width:100%;
}
a {
width:100%;
position:absolute;
}
.parent > a {
text-align:left;
}
.parent > a+a {
text-align:center;
}
.parent > a+a+a {
text-align:right;
}