2010-04-30 43 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; 
}