26

I have seen it on some sites where the textarea input can by drawn only downward but not to sideways.

<textarea cols="10" rows="5" charswidth="23" name="text_body"></textarea>
I have tried those but the width is still extendable. Please how can I do this?
Stephinext
  • 487
  • 2
  • 6
  • 14

2 Answers2

72

textarea {
  resize: vertical;
}
<textarea cols="10" rows="5" charswidth="23" name="text_body"></textarea>

JSFiddle Demo

MDN docs for resize

Nick F
  • 9,781
  • 7
  • 75
  • 90
Keiwan
  • 8,031
  • 5
  • 36
  • 49
5

This can be achieved via CSS.

    <textarea cols="10" rows="5" charswidth="23" name="text_body" style="resize:vertical"></textarea>
chatuur
  • 1,207
  • 13
  • 20