Sometimes, we want to turn off text area resizing with CSS.
In this article, we’ll look at how to turn off text area resizing with CSS.
How to turn off text area resizing with CSS?
To turn off text area resizing with CSS, we set the resize
property.
For instance, we write
textarea {
resize: none;
}
to add resize: none;
to disable textarea resizing.
Conclusion
To turn off text area resizing with CSS, we set the resize
property.