2010-04-30 44 views

回答

1

这是因为

.item-list UL LI { 
... 
list-style-type: disc; 
... 
} 

在system.css定义

0

使用这一个

li{ 
display:inline; 
} 

比点不会在IE7中显示。

13

你把list-style-typeulli

它应该是:(据我所知)

ul{ 
    list-style-type: none; 
} 

比我以前用这个其他:

li{ 
    background-image: url(); /*or link to a blank image*/ 
    background-repeat: no-repeat; 
    background-position: left; 
    padding-left: 12px; 
} 

这也许不是最好的方式,但它能够完成:)

工作

另外也试试这个:

li.class, li.collapsed, li.expanded { 
    list-style-image: none; 
    list-style: none; 
    list-style-type: none; 
} 
ul { 
    list-style-image: none; 
    list-style: none; 
    list-style-type: none; 
}