Hi

Try using a definition list with the dt holding the labels and the dd
holding the input - you can float the dt and dd to get two left-right
"columns" and if you want to present the form differently then just use a
dt/dd with no floats:

<form method="post" action="">
<fieldset>

<legend>Login Foo</legend>

 <dl>

  <dt><label for="username">Username</label></dt>
  <dd><input type="text" id="login_username" name="login[username]"></dd>

  <dt><label for="password">Username</label></dt>
  <dd><input type="password" id="login_password"
name="login[password]"></dd>

 </dl>


<!-- clear floats above with this -->
<div>
 <input type="submit" value="Log-In" name="login[start]">
</div>

</fieldset>
</form>

cheers
James


*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************

Reply via email to