css textarea resizable code example
Example 1: prevent textarea resize css
textarea {
resize: none;
}
Example 2: textarea resize off
<textarea class="myTextArea"></textarea>
<style>
.myTextArea {
resize: none;
}
</style>
Example 3: resize in css
/* Keyword values */
resize: none;
resize: both;
resize: horizontal;
resize: vertical;
resize: block;
resize: inline;
/* Global values */
resize: inherit;
resize: initial;
resize: unset;