I need to disable textarea horizontal resize. Sometimes I want to allow vertical resize on the textarea.
Whenever I create a contact us page the textarea is making my
With some css like this
textarea { resize: none; }
Or if you want only vertical
textarea { resize:vertical; }
Or horizontal
textarea { resize:horizontal; }
or both ( not your case)
textarea { resize:both; }