Is it possible to lock the width of a textbox so that the users can't increase the width of it? (right now they can increase it, but not decrease it, because of the style="width: 717px;"
).
Something like:
<form>
<textarea maxwidth="717" />
</form>
You are looking for the resize
css rule:
textarea {
resize:none;
}
You can also set it to vertical
or horizontal
resize only.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With