Definition list disc not showing up
- by aslum
CSS:  
.about dt { 
list-style-type:none;
font-weight:bold;
}
.about dd { 
list-style-type: disc;
list-style-position: outside;
margin-left: 0px;
padding-left: 30px;
}
And the html
<dl class="about">
    <dt>Current topics and titles </dt>
    <dd>Fulfilling community residents’ appetite for information about 
    popular cultural and social trends and their desires for satisfying 
    recreational experiences</dd>
...
I want a disc before the DD, but it's not showing up in Chrome or IE. Any ideas what I've done wrong?
Thanks!