You can make DT and DD tags look like tables, it is very easy!
PHP Code:
dl {
margin: 0;
padding: 0;
width: 300px;
}
dt, dd {
display: block;
float: left;
margin: 0;
padding: 0;
width: 150px;
}
dt {
clear: left;
}
try that out and tweak it to your liking.