React
React

Textarea Auto Grow

This show how to make text are grow automatically.

Jul 4, 2023·1 min read
jsx
<textarea
  onInput={(e) => {
      e.target.style.height = "5px";
    e.target.style.height = e.target.scrollHeight + "px";
  }}
/>;
<textarea
  onInput={(e) => {
      e.target.style.height = "5px";
    e.target.style.height = e.target.scrollHeight + "px";
  }}
/>;