-2

这是我的网站:

http://goo.gl/qTjPb

在此页面(仅)中,我不想显示项目符号。

我尝试使用内部 css,但它不起作用:

  <ul style="list-style:none">

外部 css 也不起作用:

  <ul class="test"> 

  .test{list-style:none;}

你能帮我解决这个问题吗?谢谢你。

4

3 回答 3

1

添加班级

<ul class="nobullets">
   ....
</ul>

然后在css中

ul.nobullets li {
  list-style: none;
}

或者

ul.nobullets li {
  list-style: none !important;
}

这将保证仅在该 UL 中删除项目符号 - 在该页面中

于 2013-05-31T14:32:06.157 回答
1

您的 style.css 文件的第 38 行#content #default li{margin-left:30px;list-style: disc;}覆盖了您的内联<ul style="list-style: none;">规则。

于 2013-05-31T14:32:34.337 回答
0

您必须将 list-style:none 应用于<li>not 到<ul>.

于 2013-05-31T14:33:26.187 回答