Hi, I've got a simple HTML problem. I'm using a FORM so the user can input values, eg Name, age, height... I want to display these vertically, but with the INPUT boxes lined up. Is there any way of doing this other than tediously using the   option. I'd like my output to be something like below...
Any help is much appreciated [ August 28, 2005: Message edited by: colin shuker ]
Satish SN
Ranch Hand
Joined: Apr 19, 2005
Posts: 70
posted
0
Hi Collin,
There are two ways in which u can place the textboxes in vertical position first: simple <br/> statement after each txtbox <b>Name :</b> <input type="text" name="txt1"><br/> <b>Age :</b> <input type="text" name="txt2"><br/>