JSFiddle - React, Tailwind, and code Playground

HTML

<div class="version_text">
    <div class="left">Rakesh Keerthi</div>
    <div class="center">Rakesh Keerthi</div>
    <div class="rght">Rakesh Keerthi</div>
</div>

CSS

div.version_text {
    width:100%;
    margin-top:10px;
    border-top:1px solid orange;
    border-bottom:1px solid orange;
    white-space: nowrap;
}

div.version_text div.left, div.version_text div.rght, div.version_text div.center {
    display:inline-block;
    width:33.33%;
    text-align:center;
}