How to disable the resizing of the text field

Learn how to disable the resizing option of the text field.

Prohibit scaling of text fields

Prohibit scaling of text fields

You can use resize An attribute to specify whether the text area should be scalable:

textarea {
  resize: none;
}

Try It Yourself

Related Pages

Reference Manual:CSS resize Property