-1

How do I display a long text in a Panel without a slider? Currently this is how the text is displayed:

enter image description here

Here the user has to move the slider to see the remaining text. Instead, how can I display the remaining text within view?

I tried using textarea as follows:

<textarea rows={5} cols={45}>{value}</textarea>

That's displaying an additional slider:

enter image description here

user989988
  • 3,006
  • 7
  • 44
  • 91
  • the other way is to assign height and width to the textarea and it will be able to show the entire text. But you will have to scroll once the text size increases certain limit – nircraft Apr 02 '19 at 19:00

1 Answers1

0

CSS max-width: 400px; max-height: 1000px; Try too resize: none; If u want text cant edit <textarea .. readonly></textarea>