Hi everybody,
As you know the text areas in Rails have a variable size (the little
arrow in the bottom right corner you can drag and drop). My customer
doesn’t want that. Now my question - how can I turn this off? Or do I
use a workaround?
greetings and regards
manavortex
On 10 January 2012 12:27, manavortex [email protected] wrote:
As you know the text areas in Rails have a variable size (the little
arrow in the bottom right corner you can drag and drop). My customer
doesn’t want that. Now my question - how can I turn this off? Or do I
use a workaround?
The “workaround” is to use a different browser. It’s nothing to do with
Rails.
On Jan 10, 2012, at 8:22 AM, Michael P. wrote:
On 10 January 2012 12:27, manavortex [email protected] wrote:
As you know the text areas in Rails have a variable size (the little
arrow in the bottom right corner you can drag and drop). My customer
doesn’t want that. Now my question - how can I turn this off? Or do I
use a workaround?
The “workaround” is to use a different browser. It’s nothing to do with Rails.
This is a browser feature. If you really want to remove it, tell the
browser with CSS:
textarea {
resize: none;
}
Walter