CSS label alignment
http://stackoverflow.com/questions/13597117/boxes-and-labels-not-aligned-css
HTML
<div>
Test
</div>
CSS
.left {
width: 30%;
float: left;
text-align: right;
}
.right {
width: 65%;
margin-left: 10px;
float:left;
}