有些东西似乎打破了IE7 中列表(ul
和ol
)的显示.它们在IE8,FF,Safari等中运行良好,但不适用于IE7和IE6.
我只是希望它们正常显示:ul
列表应显示项目符号,ol
列表应显示数字.
我把它缩小到styles_layout.css
...... 的前1000行代码;)
实际上,我认为它与以下样式有关:
* { margin: 0; } html, body { height: 100%; } .wrapper { min-height: 100%; height: auto !important; height: 100%; margin: 0 auto -39px; }
看看这里:http://www.olvarwood.com.au/olvarwoodonline/mod/forum/discuss.php? d = 2,登录为guest
IE7及以下样式ul元素如下:
ul { margin-left: 40px }
好的浏览器样式ul元素如下:
ul { padding-left: 40px }
Eric Meyer在这里解释得更好:https: //developer.mozilla.org/en/Consistent_List_Indentation 和"查找一致性"部分将告诉你你做了什么.