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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Positioning a Form element

Status
Not open for further replies.
Mar 14, 2002
711
US
I know this is a relatively stupid question, but I have not yet found the right way to do this. I need to embedd some html to position a form element in an ASP page. I have several single box forms and I want to align them on the left side (about 25 pixels to the right from left end) and then place them like this:

FORM BOX 1

FORM BOX 2

FORM BOX 3

etc.

What do I need to tag the form elements in order to align them as such?
 
use HTML tables:
Code:
<table width=&quot;50&quot; cellspacing='0' cellpadding='0'>
<tr><td width=&quot;5&quot;>&nbsp;</td><td><input type=&quot;text&quot;</td></tr>
<tr><td width=&quot;5&quot;>&nbsp;</td><td><input type=&quot;text&quot;</td></tr>
<tr><td width=&quot;5&quot;>&nbsp;</td><td><input type=&quot;text&quot;</td></tr>
</table>


or u can use the pre command:
Code:
<pre>
    <input type=&quot;text&quot;>
    <input type=&quot;text&quot;>
    <input type=&quot;text&quot;>
</pre>

Known is handfull, Unknown is worldfull
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top