How TO - Disable Resizing of Textarea


Learn how to disable the resize option of textareas.



Disable Resizing of Textarea

You can use the resize property to specify whether a textarea should be resizable or not:

Example

textarea {
  resize: none;
}
Try it Yourself »

Tip: Go to our CSS resize Reference to learn more the resize property.


Copyright 1999-2023 by Refsnes Data. All Rights Reserved.