My challenge involves a textarea where text overflows onto the next line when it exceeds the maximum characters. However, I want the text to continue on the same line with a scroll bar for better visibility.
Here's an illustration:
text here flows onto
the next line
I desire the text to appear as follows in the textarea
, without overflowing:
text here doesnt flow onto the next line, but might not be visible without scrolling
Although I've tried using overflow-x, it doesn't seem to work properly. Is there another solution available?