Hello
Is is it possible to create an unstretchable textarea (example with a definite max. width) that wouldn't stretch when users press and hold a certain key ?
unstretchable textarea
Moderator: General Moderators
Re: unstretchable textarea
You can specify the cols and rows properties. As far as I know, the user can't change those, although I believe scroll bars will appear if the user attempts to enter more data than the textarea can display.Monopoly wrote:Hello
Is is it possible to create an unstretchable textarea (example with a definite max. width) that wouldn't stretch when users press and hold a certain key ?
- JAB Creations
- DevNet Resident
- Posts: 2341
- Joined: Thu Jan 13, 2005 6:44 pm
- Location: Sarasota Florida
- Contact:
Re: unstretchable textarea
Stretch? The size won't change save for in Webkit if you use a (currently) proprietary CSS property.
Perhaps you're referencing overflow and the scrollbar? In which case you'd set overflow: hidden;.
Perhaps you're referencing overflow and the scrollbar? In which case you'd set overflow: hidden;.