How to disable textarea resizing?

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

    You can put this in the CSS file:

    textarea {
      resize: none;
    } 
    

提交回复
热议问题