resizable textarea code example
Example 1: prevent textarea resize css
textarea {
resize: none;
}
Example 2: disable textarea resize
textarea {
resize: none;
}
#foo {
resize: none;
}
Example 3: remove resize from textarea
textarea {
resize: none;
}
Example 4: textarea resize off
<textarea class="myTextArea"></textarea>
<style>
.myTextArea {
resize: none;
}
</style>
Example 5: resize in css
resize: none;
resize: both;
resize: horizontal;
resize: vertical;
resize: block;
resize: inline;
resize: inherit;
resize: initial;
resize: unset;
Example 6: make textarea not resizable
You can either apply this as an inline style property like so:
<textarea style="resize: none;"></textarea>
or in between
<style>...</style> element tags like so:
textarea { resize: none; }