JSFiddle - React, Tailwind, and code Playground

HTML

<div id="frontScroll">
  <div id="eleOne">

  </div>
  <div id="eleTwo">

  </div>
  <div id="eleThree">

  </div>
  <div id="eleFour">

  </div>
</div>

CSS

#frontScroll{
  display:flex;
}
#frontScroll > div {
  height: 300px;
  width: 300px;
  top:0;
}
#eleOne{
  background-color:blue;
}
#eleTwo{
  background-color:red;
}
#eleThree{
  background-color:black;
}
#eleFour{
  background-color:green;
}