vote up 1 vote down star

I want to be able to create a text area that fills an available space.

However because of the different monitor resolutions I don't think I can simple specify a character width. Is there anyway of getting around this without having too much logic to specify different character widths for each set of monitor resolutions.

flag

71% accept rate
What about language/platform? Is it html or else? – x2 Nov 2 at 8:01
Yes HTML/css web app – Ankur Nov 2 at 8:04

2 Answers

vote up 4 vote down check

The answer is to simple set

style="width: 100%"

instead of

cols="XX"
link|flag
how does this take care of height? – Scott Evernden Nov 2 at 8:14
The cols and rows attributes are still needed for standards compliance. – austin cheney Nov 2 at 8:22
@Scott, the div doesnt't have a height, so I used an appropriate value or my situation. – Ankur Nov 2 at 9:04
vote up 1 vote down
<textarea style='width:100%; height:100%'>type here</textarea>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.