Customize Textarea Resizing with CSS
Webkit-based web browsers like Safari and Chrome have led web innovation the past few years. Whether its implementing new JavaScript APIs, providing more CSS capabilities than other browsers, or simply providing blazing-fast page rendering, WebKit has been head and shoulders above other browsers in page control and CSS features. One of those subtle features is the ability to control textarea resizing. FireFox will provide this same capability in Firefox 4. Let me show how to control textarea resizing with CSS.
The CSS
Textarea resize control is available via the CSS3 resize property:
textarea { resize:both; } /* none|horizontal|vertical|both */ textarea.vert { resize:vertical; } textarea.noResize { resize:none; }
Allowable values self-explanatory: none
(disables textarea resizing), both
, vertical
and horizontal
. The default in Firefox, Safari, and Chrome is both
.
If you want to constrain the width and height of the textarea element, that's not a problem: these browsers also respect max-height
, max-width
, min-height
, and min-width
CSS properties to provide resizing within certain proportions:
#confinedSpace textarea { resize:vertical; max-height:300px; min-height:200px; } #confinedSpace textarea.horiz { resize:horizontal; max-width:400px; min-width:200px; }
Textarea resizing is hugely helpful when you're looking to post a long message. Of course sometimes you may want to disable textarea resizing to accommodate a design, and that's fine too. As a general rule, however, you should allow resizing.
text area deyince bende bişi anlatacak sandım
thank, don’t lnow about resize in css
Thank you very much! I didn’t know this css attribute. Is it supportet by IE?
Just did an IE10 check and textarea resizing is still not supported.
No, IE will not support Resize. Check (http://www.impressivewebs.com/css3-support-ie9/) for a table with what CSS3 attributes are supported. Best to stick with jQuery to get cross-browser compatibility if you want to implement this.
It work’s on Both Firefox and IE9.
i.e.
.textareaResize { resize:none;} in CSS class.
I found a page that has a liquid jquery textarea that looks good.
http://www.ajaxera.com/jquery-sexy-tools-textarea/
I do not recommend the use of Internet Explorer because it is very stupid
I try
resize: vertical
and it works in Firefox (8), but it doesn’t work in Chrome (15) and Safari.I hate IE, never do what I want
I think that IE is the worst browser ever.
Its not IE’s fault, its on W3C. Take a look at this http://www.w3.org/TR/css3-ui/#resize The paper is still in the Working Draft. And if you haven’t heard of the story what happened with gradient and ohter browsers, read this http://blogs.msdn.com/b/ie/archive/2012/06/25/unprefixed-css3-gradients-in-ie10.aspx. Its mandatory for a vendor to wait for the recommendation by W3C and then give the complete support.
IE10 is getting very fast and complying with HTML5 and CSS3 standard to FULL extent. Take an example of placeholder attribute of HTML5 tag..
Firefox provide :-moz-placeholder for CSS3.
Safari and Chrome provide ::webkit-input-placeholder.
IE10 provide :-ms-input-placeholder
If I tell you this information, you may say its a good thing that most browsers support this HTML5 & CSS3 feature and you will move on. But what about “the quality” of this implementation: Firefox doesn’t support line-height property for placeholder. Chrome doesn’t support padding, Safari supports 5 out of 13 properties listed here http://newilk.com/testing/Placeholder_styling
Opera dropped the support of placeholder styling since Opera 11.
IE10 is the only browser supporting all properties for placeholder style.
Thanks alot…. it works… :D
Is it possible to style the resize handle with CSS ?
I highly doubt it :(
In webkit you can play around with the scrollbar styling.
I used >
to style the resizer on the textareas in one of my sites.
I have a question?
When i try to resize this text area. All component under this text area will auto push down or push up when i expand or collapse text area. How can i do it? Please and thanks so much?
You can just check
I think that is working in every browser … i am sure ….
Thanks you David!
For a compatibility on each browser: http://caniuse.com/#search=resize
But what does *not* seem to work in even the most recent FF is:
min-height: 100%;
Hi,
I need help,
I want resize iframe by dragging right bottom corner but its working in all browsers but not in IE,is there any solution for this to work in IE..?
David, I’ve found your website so helpful over the years. Whenever I’m looking for a solution to a specific problem like this, your website is always one I can rely one. This page is just the latest in a long line of examples.
Thank you for doing what you do and being the help you are. Cheers!
For reset I use https://github.com/1000tech/godlike.css
I’d like the element containing the element being resized
to also grow/shrink as its content element is resized.
(and recursively on up, if possible)
When you drag a resize triangle, is an event fired?
I see onresize but that’s just for the whole browser as I understand it.
Having another even “on resize done” would be good to,
that’s just called once, when the user lets up on the mouse button
after dragging a resize triangle.
(PS, you’re my favorite JS blogger!)