JSFiddle - React, Tailwind, and code Playground

by vaheed akhtar

HTML

<div id="parent">
  This text, if longer, should cause an overflow and scroll bar
  
  <div id="element">
    Something goes here, but I dont want this element to trigger a scroll bar
  </div>
</div>

CSS

#parent{
  width: 200px;
  height: 80px;
  background-color: #F99;
}

#element{
  overflow: scroll;
}