我正在通过W3C validator验证此CSS:
#breadcrumbs {
list-style-type: none;
padding-left: 0;
}
并获得此输出:
Value Error : list-style-type none is not a list-style-type value : none
这里的价值none
有什么问题?
答案 0 :(得分:5)
是的,list-style-type: none
在CSS3中有效,就像在CSS 2.1中一样。这适用于最近的working draft以及CSS列表和计数器模块级别3的当前editor’s draft。
但验证者在这里有一个错误;两天前刚报道:Bug 19927 - list-style-type无法验证。似乎这个bug比最初报告的更广泛;偶list-style-type: disc
失败!
验证程序错误当然不会影响浏览器行为。您可以继续使用list-style-type: none
。
更新:验证程序错误现已修复。
答案 1 :(得分:1)
我不知道为什么,但试试这个:
#breadcrumbs {
list-style:none;
padding-left: 0;
}
这应该验证正常,list-style
具有相同的效果。