1. ホーム
  2. html

[解決済み] How to disable the resize grabber of <textarea>? [duplicate]

2022-03-17 23:25:31

Question

How to disable the grabber in the <textarea> ?

I mean that triangle thing which appears in the right-bottom corner of the <textarea> .

解決方法は?

ただ resize: none

textarea {
   resize: none;
}

また、この方法で、テキストエリアのサイズを水平または垂直のみに変更することを決めることができます。

textarea { resize: vertical; }

textarea { resize: horizontal; }

最後に resize: both は、リサイズグラバーを有効にします。