JSFiddle - React, Tailwind, and code Playground

by davidmold

HTML

<div class='scrolley'>
  This is a lot of content
  to go in one div that
  is not scrolling and so
  a certain amount of it will
  surely spill off the end.
  <br><br>
  This is a lot of content
  to go in one div that
  is not scrolling and so
  a certain amount of it will
  surely spill off the end.
  <br><br>
  This is a lot of content
  to go in one div that
  is not scrolling and so
  a certain amount of it will
  surely spill off the end.
</div>

CSS

.scrolley{
  width:200px;
  height:200px;
  overflow-y:scroll;
  scrollbar-color: #000aa1 #000;
}