JSFiddle - React, Tailwind, and code Playground

by GopsAB

HTML

<div class="parent">
  <div class="first" >Text1</div>
  <div class="second" >Text2</div>
 </div>

CSS

.parent
{
    width: auto;
    height: 200px;
}
.first
{
    width:auto;
    border:1px solid red;
    float: left;
}
.second
{
    width:auto;
    border:1px solid green;
    position: relative;
    left: 0px;
}