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

I want to disable the resizable property of a TextArea.

Currently, I can resize a TextArea by clicking on the bottom right corner of the TextArea and dragging the mouse. Is it possible to disable this? Thanks in advance.

share|improve this question
3  
+1 good question, often wondered about this as Chrome let me resize most textareas. – Jakub Mar 8 '11 at 16:19
1  
I think this is a good question, however in most cases I think you should let the user resize it. It will always default correctly so your page won't look ugly until they resize it. Allowing a user to resize it is allowing them to make it easier on themselves. – JD Isaacks Mar 8 '11 at 18:06
4  
@JDIsaacks. I disagree. That's like saying make it really easy for a user to remove custom styles from textboxes and buttons. It's my site, and it's my design. I don't want it to look like windows/mac/etc, I want it to look like MY application/site. – flem Oct 3 '12 at 15:23
@JDIsaaks - further, allowing resize in certain situations can break layout and printabilit (an important aspect of a current mission-critical project). – cale_b Nov 23 '12 at 19:35

6 Answers

up vote 209 down vote accepted

Use the following CSS rule to disable this behavior for all TextArea elements:

textarea {
    resize: none;
}

If you want to disable it for some (but not all) TextArea elements, you have a couple of options (thanks to this page).

To disable a specific TextArea with the name attribute set to foo (i.e., <TextArea name="foo"></TextArea>):

textarea[name=foo] {
    resize: none;
}

Or, using an ID (i.e., <TextArea id="foo"></TextArea>):

#foo {
    resize: none;
}

Note that this is only relevant for WebKit-based browsers (i.e., Safari and Chrome), which add the resize handle to TextArea controls.

share|improve this answer
5  
Is there a Jinx button around here? +1 for first shout. – Jeff Parker Mar 8 '11 at 16:18
@Jeff Haha, good stuff. Thanks! – Donut Mar 8 '11 at 16:26
Is there a solution for Firefox, Opera and/or IE? – Šime Vidas Mar 8 '11 at 16:31
2  
@Šime IE and FF3 (and earlier) do not add support resizing, so a solution for them is not needed. For FF4, this solution should work. – Donut Mar 8 '11 at 16:37
I see... – Šime Vidas Mar 8 '11 at 16:47
show 1 more comment

In CSS ...

textarea {
    resize: none;
}
share|improve this answer
it totally sucks that you don't have a bigger piece of Donuts plusses. I like simple answers though, so +1 to you. – Shanimal Apr 19 at 18:30

CSS3 has a new propery for UI elements that will allow you to do this. The property is the resize property. So you would add the following to your stylesheet to disable resizing of all textarea elements:

textarea { resize: none; }

This being a CSS3 property, you will find browsers that do not yet implement support for it. In fact, according to the compatibility chart at quirksmode.org, the only browsers that currently support this property are Safari and Chrome (i.e. WebKit based browsers).

Personally, I would find it very annoying to have resizing disabled on textarea elements. This is one of those situations where the designer is trying to "break" the user's client. If your design can't accommodate a larger textarea, you might want to reconsider how your design works. Any user can add textarea { resize: both !important; } to their user stylesheet to override your preference.

share|improve this answer

I found 2 things

first

textarea{resize:none}

this is a css3 which is not released yet compatable with Firefox4+ chrome and safari

another format feature is to overflow:auto to get rid of the right scrollbar taking into account dir attribute

code and different browsers

Basic html

<!DOCTYPE html>
<html>
<head>
</head>
<body>
    <textarea style="overflow:auto;resize:none" rows="13" cols="20"></textarea>
</body>
</html>

Some browsers

  • IE8

enter image description here

  • FF 17.0.1

enter image description here

  • chrome

enter image description here

share|improve this answer

@Html.TextAreaFor(m => m.Notes, new { style = "resize:none" })

share|improve this answer

For me only resize none doesn't work. Only really works when use it:

.itemTextArea,.itemTextAreaOver,.itemTextAreaDown,.itemTextAreaSelected,.itemTextAreaSelectedOver,.itemTextAreaFocused
    {
    font-family: Arial, helvetica, verdana, sans-serif;
    font-size: 12px;
    text-shadow: 0px 1px 0px #fff;
    resize: none;
    max-width: 180px;
    max-height: 150px;
}

Hope it's help ;)

share|improve this answer
3  
In what browser doesn't only resize: none; work? Can you share a fiddle? – Camil Staps Feb 28 at 17:58

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.