JSFiddle - React, Tailwind, and code Playground

by mmis1000

HTML

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

CSS

.a {
  position: relative;
  width: 100px;
  height: 100px;
}

.b {
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

.c {
  position: absolute;
  width: 100%;
  overflow-x: hidden;
}