Tu appliques un float: left; et une largeur à ton label.
Ensuite, il faudra un clear: both;
<label></label>
<input type=""... /><br />
<label></label>
<input type=""... /><br />
label {
float: left;
width: 200px;
}
br {
clear: both;
}
Je n'ai rien pour tester mais à mon avis ça fonctionne...