How to disable the resizable property of a textarea with CSS?

Sometimes, we want to disable the resizable property of a textarea with CSS.

We’ll look at how to disable the resizable property of a textarea with CSS, in this article.

How to disable the resizable property of a textarea with CSS?

First we have to set the resize property, To disable the resizable property of a textarea with CSS.

For instance, we can write

textarea {
  resize: none;
}

to disable resizing of the textarea with resize: none;.

Conclusion

Then we set the resize property, To disable the resizable property of a textarea with CSS.

Leave a Reply