JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<body>

<h1>TextArea Test</h1>

<p>TextArea In FireFox</p>

<textarea rows="2" style="width: 200px; height: 30px; overflow:auto">
This is some text. see if it shows scrollbars
1
2
3 
</textarea>

</body>

CSS

textarea {
    resize: none;
}