JSFiddle - React, Tailwind, and code Playground

by tikosar

HTML

<div class="scroll"><div class="test">I'm a fat block</div></div>

CSS

body {
  margin: 0;
}

.scroll {
  box-sizing: border-box;
  width: 100vw;
  overflow-x: auto;
  border: solid 5px navy;
}

.test {
  width: 2000px;
  padding: 50px;
  background: maroon;
}