Forum Moderators: not2easy
I want to convert the formatting of this little form to a non-table layout with css ... is there an easy way to do this.
I always see examples of forms where the label is on top of the textbox ... I want all the labels on the left side with an equal width.
<table>
<tr>
<td width="100px;">Field 1 label</td>
<td><input type="text"></td>
</tr>
<tr>
<td>Field 2 label</td>
<td><input type="text"></td>
</tr>
</table>
Thanks