我想在我爲其分配「標準」類的div內部設置項目符號點。我重寫了另一個顯示列表項背景的類。什麼也沒有發生:div中的項目符號點
div.standard ul li {
display:list-item !Important;
list-style-type: disc !Important;
}
頁面如下: http://mw.theseolounge.co.uk/index.php/marsden-m-300.html 和項目的名單是根據主要特點。 我在做什麼錯?
我想在我爲其分配「標準」類的div內部設置項目符號點。我重寫了另一個顯示列表項背景的類。什麼也沒有發生:div中的項目符號點
div.standard ul li {
display:list-item !Important;
list-style-type: disc !Important;
}
頁面如下: http://mw.theseolounge.co.uk/index.php/marsden-m-300.html 和項目的名單是根據主要特點。 我在做什麼錯?
您正在應用樣式直接列出項目li
,而它應該應用於實際列表ul
或ol
本身。試試下面的CSS直接適用的造型到列表:
div.standard ul{
display:list-item !Important;
list-style-type: disc !Important;
}
你必須把list-style-type
在ul
,而不是li
。我認爲你可以擺脫display: list-item
。
您的意思是產品特點? –
我沒有看到任何div在您的網頁上有「標準」類 –