JSFiddle - React, Tailwind, and code Playground

by chiragvidani

HTML

<div class='test'>
  <div style='float: left;'>
    <button>test</button>
     <button>test1</button>
  </div>
  <div style='float: right;'>
    <button>test</button>
    <div>
    <button>test1</button>
    </div>
    
  </div>
</div>

CSS

.test {
  width:60%;
  display:inline;
  overflow: auto;
  white-space: nowrap;
  margin:0px auto;
}