Aug 22, 2006 #1 HotBob Programmer May 26, 2006 37 GB What is the html tag for a text box with multiple lines e.g a want a text box with 300 px width and 200 px height where multiline is present. Cheers.
What is the html tag for a text box with multiple lines e.g a want a text box with 300 px width and 200 px height where multiline is present. Cheers.
Aug 22, 2006 #2 cLFlaVA Programmer Jun 14, 2004 6,450 US you want a textarea. rows and cols are required attributes, but you can then style it appropriately. Code: <textarea rows="10" cols="40" style="width: 300px; height: 200px;"></textarea> *cLFlaVA ---------------------------- [tt]mr. pibb + red vines = crazy delicious![/tt] [URL unfurl="true"]http://www.coryarthus.com/[/url] Upvote 0 Downvote
you want a textarea. rows and cols are required attributes, but you can then style it appropriately. Code: <textarea rows="10" cols="40" style="width: 300px; height: 200px;"></textarea> *cLFlaVA ---------------------------- [tt]mr. pibb + red vines = crazy delicious![/tt] [URL unfurl="true"]http://www.coryarthus.com/[/url]