JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
   <div class="one">DIV sdfsdfsdfasdfa1</div>
   <div class="two"> DIV 2 asdfasdfasdf
     asdfasdfasdfasdfasdf
     asdfasdfasdfasdfasdf
     asdf
     asdf
     asdf
     asdf
     asdf
     asdf
     </div>
   <div class="three"> DIV 3 </div>
   <div class="four"> DIV 4</div>    
  </div>

CSS

.container {
  
  width:400px;
  margin:0; 
}
.one
{

    width:100px;
    border:1px solid red;
    text-align:center;
    float:left;
}
.two
{

    width:100px;
    border:1px solid red;
    text-align:center;
    float:left;
    margin-left:20px;
}

.three
{

    width:100px;
    border:1px solid red;
    text-align:center;
    float:left;
    position:relative;
    top:70px;
    margin-left:-224px;
}
.four
{
 
    width:100px;
    border:1px solid red;
    text-align:center;
    float:left;
    position:relative;
    top:120px; 
    margin-left:-100px;
}