Text fields
By Radhakrishnan K
I have created some five text fields but it is not alligned properly. how to align that? i.e the text box lengths are different looking, which resulted an ugly look
Sanjay S Nair replied to Radhakrishnan K Thursday, November 26, 2009
You could use tables if you have learned tables to align them, use the size property for the length of textbox
<form>
<table>
<tr><td>Name</td><td><input type=text name=name size=33></td></tr>
<tr><td>Email</td><td><input type=text name=email size=33></td></tr>
</table>
</form>