IE67中的list-style:none会引起诡异的现象
21May

同样碰到过这种问题,作者研究的很细,值得一看。
详细内容:http://www.blueidea.com/tech/web/2010/7616.asp
通过上面代码表现结果的对比:
在firefox中只要list-style-type为none ,则无论list-stype-position的值为outside或inside , list-style都能很好的被隐藏
而在IE6,7中,仅设置list-style:none,并不足以解决所有问题
所以我认为在css reset的时候使用 list-style:none outside none
更好。