input fields, no table, only css example

by katalin_2003

HTML

<div class=”field_container”><label>First Name</label><input type=”text”></div>
<div class=”field_container”><label>Last Name</label><input type=”text”></div>

CSS

label {
    width:150px;    /*Or however much space you need for the form’s labels*/
    float:left;
}