Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Text Box

Status
Not open for further replies.

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.
 
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]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top