How to disable textarea resizing?

后端 未结 6 1159
悲&欢浪女
悲&欢浪女 2021-01-30 03:00

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

6条回答
  •  孤街浪徒
    2021-01-30 03:13

    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.

提交回复
热议问题