2

I have a form in popup modal. When I resize the textarea then close the popup modal and after that when I reopen the popup model its textArea is not in proper form. I want to reset the size of textarea. Please help me out On the same issue.

enter image description here

Paddy
  • 46
  • 6

1 Answers1

0

You can define in which direction the textarea can be resized by the CSS resize Property

<textarea style="resize:both">Can be resized in every direction</textarea><br>
<textarea style="resize:vertical">Can be resized in vertical direction</textarea><br>
<textarea style="resize:horizontal">Can be resized in horizontal direction</textarea><br>
<textarea style="resize:none">Can not be resized</textarea>
Sebastian Speitel
  • 7,166
  • 2
  • 19
  • 38