Posted by PseudoMega on 12/19/06 13:12
> I have styled the inputs and labels correctly but I am having trouble
> with the submit button!
Are you trying to align the left edge of the button with the left edges
of the text inputs?
I hate tables, but I'd probably resort to using one in this instance.
<table>
<tr>
<td align="right">Name</td>
<td align="left"><input type="text" id="name" /></td>
</tr>
<tr>
<td align="right">E-mail</td>
<td align="left"><input type="text" id="e-mail" /></td>
</tr>
<tr>
<td align="right"> </td>
<td align="left"><input class="sub" type="submit" value="Submit"
/></td>
</tr>
</table>
[Back to original message]
|