Following up to my previous question (Add a scrollbar to a <textarea>) on how to always see the scrollbar in a <textarea>
, I am now wondering how you would set it so that there is no scrollbar in the <textarea>
, even when the text overflows. To scroll down with this, you would use the arrow keys or the mouse to navigate through the text.
How can I do this?
<textarea style="overflow:hidden"></textarea>
? – Blisse