Trying to remove resizable from textarea

Possible Duplicate:
How to disable resizable property of TextArea?
How to disable the resize grabber of an HTML <textarea>?

I've inherited a website to maintain and I'm not able to remove the textarea to be resizable or at least to remove the resizable "flag". Here is what I mean :

How can I remove this? it's not problem if it's resizable the problem is this icon showing that it is.


You need to use resize property to prevent the textarea to be resized.

Demo

textarea {
   resize: none;
}

resize property also takes values like vertical and horizontal to resize the textare horizontally only, or vertically only.

链接地址: http://www.djcxy.com/p/27376.html

上一篇: 我希望我的textarea具有固定的宽度

下一篇: 试图从textarea中删除可调整大小