JSFiddle - React, Tailwind, and code Playground

by skirtle

HTML

<div id="app">
  Hello<br>
  Hello<br>
  Hello<br>
  Hello<br>
  Hello
</div>

CSS

div {
  overflow: auto;
}

JavaScript

const el = document.getElementById('app')
el.style.maxHeight = '60px'
el.style.maxHeight = 'auto'