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.
|
I want to disable the resizable property of a Currently, I can resize a |
|||||||||||||||
|
|
Use the following CSS rule to disable this behavior for all
If you want to disable it for some (but not all) To disable a specific
Or, using an ID (i.e.,
Note that this is only relevant for WebKit-based browsers (i.e., Safari and Chrome), which add the resize handle to |
|||||||||||||||
|
|
In CSS ...
|
|||
|
|
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:
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 |
|||
|
|
|
I found 2 things first
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 browsersBasic html
Some browsers
|
|||
|
|
|
For me only resize none doesn't work. Only really works when use it:
Hope it's help ;) |
|||||
|