How to restrict max textarea width and height in chrome or how to disable textarea resizing

前端 未结 5 1141
说谎
说谎 2021-02-12 19:16

Chrome allowed to resize text area by drugging that on the bottom right corner, but some times this movement may break design of the page, so i am wondering how to restrict the

5条回答
  •  借酒劲吻你
    2021-02-12 19:44

    This is all a matter of CSS. To disable the resizing (drag thumb) just use resize: none;. To restrict size max(min)-width and height should do the trick.

提交回复
热议问题