JSFiddle - React, Tailwind, and code Playground

HTML

<div contenteditable>
    Testing <br/> one two three
</div>

CSS

div[contenteditable]{
    border: 1px solid black;
    max-height: 200px;
    overflow: auto;
    transition : all 300ms ease;
}