JSFiddle - React, Tailwind, and code Playground

HTML

<!--Outer div with scroll-->

<div style=" overflow:scroll">

<!--Inner div with width-->
    <div class="row bs-wizard" style="border-bottom:0; width:900px;">
       
       <div style="width:200px;float:left">
         Testing
       </div>
       <div style="width:200px;float:left">
         Testing div 2
       </div>
       
       <div style="width:200px;float:left">
         testing div 3
       </div>
       
       <div style="width:200px;float:left">
           testing div 4
       </div>
    </div>
</div>