The advantage is that you don't run into float bugs or/and having to use hacks for IE6.
Floats Rule! 
I can do the same layout using floats without any running into any bugs or needing any hacks for IE.
By using a dl I can also do it without breaking the relationship between the column items. 
Tested in Opera, IE6-8, FF,Safari (I assume Chrome works too)
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Two Column DL</title>
<style type="text/css">
body {
font-family: "Trebuchet MS", Arial, Helvetica, Tahoma, sans-serif;
margin:0;
padding:0;
background: #2F0000;
color: #F48222;
}
dl {
overflow:hidden;/*contain child floats*/
width:18em;
margin:1em;
padding:.5em;
line-height:1.5em;
}
dt {
float:left;
clear:left;
width:7em;
}
dd {
float:left;
width:10.5em;
margin-left:.5em;
}
.top {
clear:none;
margin-bottom:1em;
font-weight:bold;
}
</style>
</head>
<body>
<dl>
<dt class="top">Access Key</dt>
<dd class="top">Resulting Action</dd>
<dt>1</dt>
<dd>Skip Navigation</dd>
<dt>2</dt>
<dd>Home</dd>
<dt>3</dt>
<dd>Laboratory</dd>
<dt>4</dt>
<dd>Tutorials</dd>
<dt>5</dt>
<dd>Templates</dd>
<dt>6</dt>
<dd>Accessibility</dd>
</dl>
</body>
</html>
Bookmarks