Я думаю, вы хотите, чтобы текстовые поля были выровнены друг с другом, как показано ниже. Совет: используйте инструменты разработчика Internet Explorer, FireBug Firefox или Dragonfly от Opera, чтобы настроить атрибуты стиля на своей странице.
<form action='' method='post'>
<div style='clear:both'>
<label style='float:left;width:5em;display:block' for='username' class=''>Username:</label>
<input style='float:left;display:block' type='text' name='username' id='username' class='field' value='' tabindex='10' />
<div>
<div style='clear:both'>
<label style='float:left;width:5em;display:block' for='password' class=''>Password:</label>
<input style='float:left;display:block' type='text' name='password' id='password' class='field' value='' tabindex='20' />
</div>
<div style='clear:both'>
<label style='float:left;width:5em;display:block' for='e-mail' class=''>E-mail:</label>
<input style='float:left;display:block' type='text' name='e-mail' id='e-mail' class='field' value='' tabindex='35' />
</div>
<div style='clear:both'>
<input style='width:5em;display:block' type='submit' name='insert' id='insert' class='button' value='Insert!' tabindex='40' />
</div>