Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML HTML Forms Form Basics The Textarea Element

Ashi Chugh
Ashi Chugh
41 Points

Textarea should not be able to resize.

Textarea should not be able to resize. When user text area more only height of the form should increase and there should not be any scrollbar in text field. As, it happens in the form of treehouse "Ask a Question".

1 Answer

To disable manual resizing of a textarea, just give it the following CSS property:

resize: none;

To have the textarea resize automatically to fit the text inside, you have to use javascript - preferably jQuery. CSS cannot do this.

$("#my_textarea").height( $("#my_textarea")[0].scrollHeight );

Here's a simple demo: https://jsfiddle.net/yq77jgmy/