Turn off resize textarea in Chrome & Safari

Chrome Textarea

Chrome Textarea

There is a new feature in both Safari and Chrome that allows a textarea to be resized by the user. In both browsers the feature is seen by a little icon that is in the bottom right corner of the textarea. This feature gives the user the ability to choose how much space they need for whatever it is they are writing.

For some websites this new feature may not be desired as resizing the textarea could break the layout of the website. I can think of a few ways to prevent the layout from breaking.

  1. Design the page with a liquid layout
  2. Turn off the users ability to resize the textarea
  3. Give the textarea a max size

Redesigning the site with a liquid layout can be a lot of work and may not be optimal for the look & feel for the site. Many designers prefer to lock the site at a certain width to guarantee that everyone will see a website that looks exactly the same.

It is very easy to turn off the users ability to resize the textarea. Turning this feature off may be necessary due to the design of certain sites or to make it harder for the user to write a 100 page document in a small comment box. The following CSS can be used to remove the users ability to resize the textarea:

textarea{resize: none}

Place that code in your css file to remove the users ability to resize any textarea on the site. You could also remove it from 1 textarea on a page with inline css.

The third option of giving the textarea a max size has a similar solution of using css. The two properties that can be used are max-width and max-height. This will give the user the ability to resize the textarea but limit them to a certain max size. The css would look something like the following.

textarea{max-width: 100px; max-height: 100px;}

Of course you may only want to use one of the above properties to allow the user to grow the height to any size but not resize the width or vice versa.

An example of a site that could use one of the above steps is whitehouse.gov. There are two screen shots below that show the before and after of the user resizing the textarea.

Browsers giving the user the ability to resize a textarea is a great feature but it creates one more item that designers and developers need to be aware of when adding a textarea to a page.

Before

Before

After

After

Related Posts:

31 Responses to “Turn off resize textarea in Chrome & Safari”

  1. Igor Skomorokh Says:

    Thank you very much! Very helpful info.

  2. ZAM Says:

    Very nice, thanks for the help…!!

  3. Danish Backer Says:

    Thanks a lot!
    It worked.

    One more help needed
    How to remove yellow highlight in chrome?

  4. XBS from Forex Service Says:

    Thank you very much. Worked like a charm. Now I've finally fixed my registration form.

  5. Norman Says:

    thanks a lot. what an annoying "feature". :)

  6. Jotun Says:

    Thanks for the help.
    However, I had a little bit of difficulty. Using Chrome 2.0.172.37, implementing either the max-height and max-width values equal to the original dimensions of the textarea somehow only led to the textarea being resizeable in one direction (horizontally, if the max-width was the first declaration in the code or vertically if max-height came first). And when only putting in the resize: none; to the style (not maximum dimension values), the textarea was resizeable. But when adding both the resize: none; and maximum dimension values, the textarea remained fixed.

    Here's my code:

    #note_edit_pane{
    width: 600px;
    height: 450px;

    resize: none;
    max-width: 600px;
    max-height: 450px;
    }

    ….

    After messing around a bit more with the code, it appears as if the html comment makes the next line of code be ignored. Using a css comment /* */, however, it fixes the problem. d'oh.

    On a side note, I'm writing this post in chrome in a text area, that ironically, can be resized to the extent that it breaks the page.

  7. Efe Buyuran Says:

    Thanks for da tip mate )

  8. Alexander Ewering Says:

    I wonder what the Chrome people were thinking (I wonder that quite often regarding programmers in general). Why would someone keep introduce invasive, nonsensical features without asking, like the resizable textarea, the yellow border around focused inputs (that's the decision of the web developer), or Chrome completely and silently ignoring popup windows.

  9. Thomas Says:

    @Brett: thanks, informative and balanced.

    @Alexander and others like him: I'm not sure you know who's in command.
    I guess, Google thought, stick with usability standards and let the user decide what they want to see and act on.
    I agree that textareas should be useful and render properly from the start.
    But I guess you've never seen a ridiculously small web mail or comment field.
    Same for popups. Why a popup rather than a proper new tab? I agree insofar as I'd prefer a proper warning that the site's trying irritating things.
    Next in line: resizable windows, hiding controls.

    Actually, those are some of the reasons why I prefer Gmail over my former and some mail providers.
    And for the record: each of my browsers does some 'hideous' stuff to Google's sites and yours.

  10. Bob Kruithof Says:

    @ Danish Backer:

    How to remove yellow highlight in chrome?
    textarea { outline: none; }

  11. widi dwi Says:

    this article help me alot … i thought to much how to disable textarea resize … but it`s only a line to stop it ….

    thank you ..

  12. John Lydic Says:

    And Firefox. Wow, I found my answer on the very first Google. Thanks for the quick and easy solution.

    Now, how much for a PayPal app for parallel payments? I want to direct a percentage of every purchase from my sites to the ASPCA.

    Reading over your site and blog is sooo humbling!

    Thanks again.

  13. Jethro123 Says:

    Very useful. Thank you very much.

  14. Michael Says:

    I found a site that has an example of a jquery sexy liquid textarea

    http://www.ajaxera.com/jquery-sexy-tools-textarea/

  15. Rute Says:

    Thank you!

  16. OMA Says:

    I hope not too many people follow the "resize: none" route. Why give less functionality and usability to your users?

    Textareas are supposed to be used when a long text string needs to be written (for example, a contact form), and I hate writing a long text in a tiny letterbox area with only 3 or 4 lines visible at a time (similarly, I find incredibly cumbersome to read terms & conditions in a similarly sized area, and most of them are like that; no wonder nobody reads it!). Specially I hate it when I have a large 24 inch monitor, but still I have to be constrained to writing in a ridiculously tiny space.

    I think the best compromise is using ONLY the "max-width" attribute to constrain what the user can resize. That way, resizing the textarea horizontally won't break your great CSS layout, but still the user can resize vertically to accomodate more text without the need to scroll. If you use a liquid layout, and any good CSS designer should, if should be no problem to have a vertically resizable textarea.

  17. Felipe Mota Says:

    Yes, I was wondering about that feature. Thanks! :)

  18. Beraki Says:

    cool thanks

  19. Felipe Mota Says:

    But this code works on Firefox too, right?

  20. enrico Says:

    Very good tips, unfortunately half of this planet still uses i.e while using internet, so this is not crossbroweser, meaning that a lot of users will still be able to resize the textarea changing the content flow of the entire page

  21. Brett Says:

    @enrico IE does not give the user the option to re-size the textarea so this solution is not needed for IE.

  22. ReBirthal Says:

    Thank you very much.
    You solved my problems.
    It's very useful. ^^"

  23. Germán Says:

    Thanks for the tip!!

  24. Mekey Salaria Says:

    Thanks! It even worked for Mozilla Firefox!! :)

  25. Mekey Salaria Says:

    Thank you so much..
    it worked for Mozilla Firefox as well!! :))

  26. Eddie Brewer Says:

    Thank you so much, I'd like to inform you if you didn't already know.
    This works on all browsers! (:
    Thank you sooo much!

  27. sohaib Says:

    thank you soo much :)

  28. Mirta - Recipes Cookbook Says:

    Thanks so much Brett, you save me for hours of nonsense research. Please keep yourself involve in posting good solutions like this one :)

  29. Baburao Says:

    Thank you so much!!!!

  30. Cris Says:

    Thank you so so much!!

  31. Joe Says:

    ihgreiu

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Notify me of followup comments via e-mail. You can also subscribe without commenting.