JSFiddle - React, Tailwind, and code Playground

by Slezi

HTML

<div class="content">
  <h1 contentEditable="true" id="textarea"></h1>
</div>

CSS

.content {
  display: flex;
}

#textarea {
  width: 100px;
  height: 80px;
  word-break: break-all;
  cursor: text;
  background-color:rgba(132, 225, 132, 0.9);
  border: 1px solid black;
}