Originariamente inviato da ziosimu
Salve a tutti. Volevo sapere come si possono allineare i fields di un form. Per esempio:

Primocampo ......
Secondocampo .....
...
Dodicesimocampo .....

come si può rendere:

Primocampo .....
SecondoCampo .....
...
DodicesimoCampo .....

Grazie a tutti
codice:
<table>
<tr>
<td>campo1</td>
<td><input type="text" name="uno"></td>
</tr>
<tr>
<td>campo2</td>
<td><input type="text" name="tre"></td>
</tr>
<tr>
<td>campo3</td>
<td><input type="text" name="due"></td>
</tr>
</table>