I'm trying to list movie info, and I want the "cast" list to have two columns, instead of one long column to make better use of horizontal space.
A similar question was asked here:Multi-column definition list
but that is NOT the same question I have. That user was trying to split the dt into two columns, and I want to split one set of the dd into two columns. Here's my code:
div><h3>
<dl>
<dt>Director:</dt>
<dd>Person A</dd><br>
<dt>Writer:</dt>
<dd>Person B</dd><br>
<dt>Cast:</dt>
<dd>Person C</dd>
<dd>Person D</dd>
<dd>Person E</dd>
<dd>Person F</dd>
<dd>Person G</dd>
<dd>Person H</dd>
<dd>Person I</dd>
</dl></h3>
</div>
My CSS:
dl {
border: 3px double #ccc;
padding: 0.5em;
}
dt {
float: left;
font-weight: 400;
}
dd {
margin-left: 125px;
font-weight: 300;
}
Again, I'm looking to make just the cast list two columns. Any and all help is appreciated!
I'm totally open to using other lists or non-definition lists.