1

我正在通过W3C 验证器验证这个 CSS :

#breadcrumbs {
  list-style-type: none;
  padding-left: 0;
}

并得到这个输出:

Value Error : list-style-type none is not a list-style-type value : none

这里的值有什么问题none

4

2 回答 2

5

是的,list-style-type: none在 CSS3 中有效,如在 CSS 2.1 中。这既适用于最新的工作草案,也适用于 CSS 列表和计数器模块 3 级的当前编辑草案

但是验证器在这里有一个错误;两天前才报道过:Bug 19927 - list-style-type does not validate。该错误似乎比最初报告的更广泛;甚至list-style-type: disc失败!

验证器错误当然不会影响浏览器行为。你可以继续使用list-style-type: none

更新:验证器错误现已修复。

于 2012-11-11T12:22:21.477 回答
1

我不知道为什么,但试试这个:

#breadcrumbs {
  list-style:none;
  padding-left: 0;
}

这应该可以很好地验证并list-style具有相同的效果。

于 2012-11-11T08:12:26.160 回答