JSFiddle - React, Tailwind, and code Playground
HTML
<textarea rows=4 cols=40>
1
2
3
4
this line is visible only in FF
</textarea>
<textarea class="fixed" rows=4 cols=40>
1
2
3
4
this line is invisible in FF
</textarea>
CSS
textarea.fixed {
overflow-x:hidden;
}