textarea - disable resize on x or y?

前端 未结 3 1112
庸人自扰
庸人自扰 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条回答
  •  清酒与你
    2021-02-06 20:42

    You must use horizontal or vertical values for property.

    resize: vertical;
    

    or

    resize: horizontal;
    

    Source: https://www.w3schools.com/cssref/css3_pr_resize.asp

提交回复
热议问题