Definition list disc not showing up
        Posted  
        
            by aslum
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by aslum
        
        
        
        Published on 2010-05-17T19:41:39Z
        Indexed on 
            2010/05/17
            19:50 UTC
        
        
        Read the original article
        Hit count: 303
        
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!
© Stack Overflow or respective owner