default dl dt dd

by Joseph Tate

HTML

<dl>
    <dt>Principal Investigator</dt>
    <dd>Thing</dd>
    <dt>Preparer</dt>
    <dd>Thing</dd>
</dl>

CSS

dt {
    font-weight: bold;
    display: block;
    float:left;
    clear: left;
    width:30%;
}

dd {
   display: block;
   width:70%;
}