JSFiddle - React, Tailwind, and code Playground

by tahdhaze09

HTML

<div class="large-6 columns">
      <div id='box1'>
         <div id='text1'>
               Name
         </div>
         <div id='text3'>
               LastName
         </div>
   </div>
</div>

CSS

.large-6
{
    width:980px;
    float:left;
}
#box1{
    width:450px;
    float:left;
    background-color:#45e64c;
}
#text3{
    width:400px;
    float:left;
    background-color:#edc321;
}