JSFiddle - React, Tailwind, and code Playground

by John Doe

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%;
    height: 30px;
    line-height: 30px;
    margin-top:10px;
    border-top:1px solid orange;
    border-bottom:1px solid orange;
}
div.version_text div.left {
    display:inline-block;
    text-align: left;
    width:33%;
}
div.version_text div.center {
    display:inline-block;
    text-align: center;
    width:33%;
}
div.version_text div.rght {
    display:inline-block;
    text-align: right;
    width:33%;
}