JSFiddle - React, Tailwind, and code Playground
HTML
<div class="prevNext">
<a class="prev" href="#">Previous Article</a>
<a class="next" href="#">Next Article</a>
</div>
CSS
body {
margin: 8px;
}
.prevNext {
text-align: justify;
border: 1px solid #ccc;
line-height: 0;
}
.prevNext a {
display: inline-block;
line-height: 1.2;
}
.prevNext:after {
content: '';
display: inline-block;
width: 100%;
vertical-align: top;
}