Eine Lösung, die mir grade einfällt:

Code (html):
 
<div class="myform">
  <label />
  <input />
  <label />
  <input />
</div>


Code (css):
 
.myform {
    position: relative;
}
 
.myform label {
    position: absolute;
    left: 0em;
    width: 6em;
}
 
.myform input {
    position: absolute;
    left: 6em;
    right: 0em;
}


Das position: relative ist wichtig, weil sich position: absolute sonst auf das Fenster bezieht und nicht auf das Elternelement. Nicht getestet, sollte aber tun.