JSFiddle - React, Tailwind, and code Playground

by siyang1982

HTML

<div class="a">
  <div class="b"></div>
  <div class="c"></div>
</div>

CSS

.a {
  width: 300px;
  overflow: scroll;
  height: 60px;
  border: 1px solid red;
  white-space: nowrap;
}
.b {
  display: inline-block;
  width: 100px;
  height: 60px;
  background: blue;
}

.c {
  display: inline-block;
  width: 300px;
  height: 60px;
  background: green;
}