JSFiddle - React, Tailwind, and code Playground

by leftstick

HTML

<html>
<style>
 .scroll-container {
   width: 600px;
   overflow-x: auto;
   height: 80px;
   border: 1px solid gray;
 }
 
 .scroll-content {
    width: 1000px; 
 }
 
</style>
  <body>
  
    <div class="scroll-container">
    
      <div class="scroll-content">
          <span>hello</span>   
      </div>
   
    </div>
    
  </body>
</html>