textarea - disable resize on x or y?

前端 未结 3 1161
庸人自扰
庸人自扰 2021-02-06 20:07

I know it\'s possible to disable the resize of a textarea by using:

textarea {
    resize: none;
}

But is it possible to disable e

3条回答
  •  萌比男神i
    2021-02-06 20:50

    Sure it is possible with css and jquery

    CSS:

    resize: vertical;
    resize: horizontal;
    

    jQuery

    $('textarea').css("resize", "vertical");
    $('textarea').css("resize", "horizontal");
    

    Bootstrap just put the class in Textarea

    for the vertical resize: vresize

    for the horizontal resize: hresize

提交回复
热议问题