Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wanna know that how to disable the grabber in the textarea!

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

Please help me out!

Thanks in advance!

share|improve this question
You mean the 2 diagonal lines that appear in the bottom RIGHT corner in textareas in Chrome? – gnur Mar 11 '11 at 10:34
4  
possible duplicate of How to disable resizable property of TextArea? – thirtydot Mar 11 '11 at 10:35
2  
Yes! The two diagonal lines in the Chrome! – Jack Billy Mar 11 '11 at 10:39
1  
@gnur: Firefox 4 also allows resizing textareas. This isn't a feature unique to webkit (hence the reject vote for your edit). – Andy E Mar 11 '11 at 10:42

3 Answers

up vote 174 down vote accepted

Just use resize:none

textarea
{
   resize: none;
}

You can also decide to resize your textareas only horizontal or vertical, this way:

textarea { resize:vertical; }

textarea { resize:horizontal; }

Finally, resize:both enables the resize grabber.

share|improve this answer
2  
Thanks! It worked! Thanks a lot! – Jack Billy Mar 11 '11 at 10:39

<textarea style="resize:none" name="name" cols="num" rows="num"></textarea>

just example

share|improve this answer

rows and cols are optional i use it because generally policy is define here so width is greater

its your fun what you use

<textarea rows="6" cols= "50"disabled style="resize:none">

share|improve this answer
2  
A CSS version to this issue. textarea { resize: none; }. I think you first comment does not improve the solution and should be removed or rephrased. – fe_lix_ Feb 19 at 18:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.