如何删除列表项目符号?

时间:2012-07-05 15:06:16

标签: wordpress css3

我无法在我的在线简历中删除列表项目符号。我尝试过以下方法:

.nobull {
  list-style: none; 
  list-style-type: none;
}

清除浏览器缓存。 Here in a link to the resume.

3 个答案:

答案 0 :(得分:2)

您尝试在p代码上设置该属性,您需要在ul元素上隐式设置类,或者将ul元素嵌入到p元素中ul.no-bull, .no-bull ul { list-style: none; } 标记(我认为它是无效的标记,但我可能错了)。

no-bull

或者,您可以采用“选择加入”方法来获取项目符号,这是最常见的;这样您就不必为每个ul添加ul { list-style: none; margin: 0; } ul.has-bullets { list-style: none outside disc; margin-left: 18px; } 。像这样:

{{1}}

答案 1 :(得分:1)

ul {
  list-style-type:none !important;
}

答案 2 :(得分:0)

只是list-style: none;有效,但我看不到您在哪里使用课程.nobull