How to disable the grabber in the <textarea>
?
I mean that triangle thing which appears in the right-bottom corner of the <textarea>
.
How to disable the grabber in the <textarea>
?
I mean that triangle thing which appears in the right-bottom corner of the <textarea>
.
Just use resize: none
textarea {
resize: none;
}
You can also decide to resize your textareas only horizontal or vertical, this way:
textarea { resize: vertical; }
textarea { resize: horizontal; }
Finally,
resize: both
enables the resize grabber.
example of textarea for disable the resize option
<textarea CLASS="foo"></textarea>
<style>
textarea.foo
{
resize:none;
}
</style>