今天我正在扩展我的CSS一些带有编号列表项的锚导航。 由于我在normalise.css中重置了列表项,因此我必须为list-style属性
指定默认值在大多数情况下'默认',诀窍。但是今天在Chrome开发者工具中,我注意到“list-style”不是这种情况。 Chrome中的代码提示向我显示了“初始”值。我之前从未见过那个属性,w3.org没有谈论它,而崇高的文字2并没有突出它。
这是一种新的非官方价值吗?
nav.anchor-navigation ol {
list-style: initial;
}
答案 0 :(得分:2)
list-style
is supported in all modern browsers(和here it is in the specification),但initial
is not supported on IE and Opera.(规范:here和here)
它们是“官方”值,但是,如果“官方”,则表示它们符合规范。