How to disable textarea resizing?

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

    disable horizontal and vertical with limit

    textarea { 
        width:100%;
        resize:vertical; 
        max-height:250px; 
        min-height:100px; 
    }
    

提交回复
热议问题