0

我在删除在线简历上的列表项目符号时遇到问题。我尝试了以下方法:

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

并清除我的浏览器缓存。这里是简历的链接。

4

3 回答 3

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;
}
于 2012-07-05T15:34:45.830 回答
1
ul {
  list-style-type:none !important;
}
于 2012-07-05T15:08:15.033 回答
0

只是list-style: none;工作,但我看不到你在哪里使用课程.nobull

于 2012-07-05T15:30:34.977 回答