When working with a two column layout using divs instead of a table, I encountered an issue with displaying the content properly when the text in the first column is too long. For instance, I want 'Spoken' to be inline with 'English', but not with 'Loans, Dental' from the previous column.
#wrap {
width:280px;
margin:0 auto;
}
.left_col {
float:left;
width:30%;
}
.right_col {
float:right;
width:70%;
}