How to disable textarea resizing?

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

    You can use css

    disable all

    textarea { resize: none; }
    

    only vertical resize

    textarea { resize: vertical; }
    

    only horizontal resize

    textarea { resize: horizontal; } 
    

    disable vertical and horizontal with limit

    textarea { resize: horizontal; max-width: 400px; min-width: 200px; }
    

    disable horizontal and vertical with limit

    textarea { resize: vertical; max-height: 300px; min-height: 200px; }
    

    I think min-height should be useful for you

提交回复
热议问题