How to turn off text area resizing with CSS?

Spread the love

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.

Leave a Reply

Your email address will not be published. Required fields are marked *