ordered list does not work on IE7 (
    <li)

2019-06-22 04:45发布

I am trying to create an ordered list on IE7 but for some reason does not work. Does anybody knows why this can be? Update

The issue is that I cant see the numbers, thanks.

Thanks.

eg.

<ol>
 <li></li>
 <li><li>
</ol>

Update As an example I saw this page where if you look at it on IE7 you wont see de numbers, but if you look at it on any other (but not ie) you will see the numbers.

http://www.arraystudio.com/as-workshop/make-ol-list-start-from-number-different-than-1-using-css.html

Thanks

7条回答
唯我独甜
2楼-- · 2019-06-22 05:15

Make sure you close your <li> tags:

<ol>
  <li>first thing</li>
  <li>second thing</li>
</ol>
查看更多
登录 后发表回答