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
For textarea
I used width: 500px !important
and height: 350px !important
, so this CSS
codes prevent user resize, but if you have other tags you must use resize: none
, for complete explanations read This Link.
For example, for a p
tag you must set overflow
property with a value that is not visible
and then set resize
, none
, both
, vertical
, horizontal
.