How to disable textarea resizing?

后端 未结 6 1202
悲&欢浪女
悲&欢浪女 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:36

    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; } 
    

提交回复
热议问题