JSFiddle - React, Tailwind, and code Playground

HTML

<table>
  <tr>
    <td>
      <div class="overflow-y-scroll">
        Content here that is quite a lot so needs to scroll
      </div>
    </td>
    <td>text</td>
  </tr>
</table>

CSS

td {
  border: 1px solid red;
}

.overflow-y-scroll {
  width: 60px;
  height: 60px;
  overflow-y: scroll;
}