Ordered list showing all zeros in IE9

前端 未结 11 571
眼角桃花
眼角桃花 2020-12-03 04:55

I have an

    (ordered list) and in FF, Safari, Chrome it is rendered correctly. However in IE9 it is showing all zeros. It is not a spacing/padding is
11条回答
  •  眼角桃花
    2020-12-03 05:09

    Another solution :)

    1. Show the element:

           el.show();
      
    2. Then:

       setTimeout(function(){
              $("ol").css("counter-reset", "item")
       }, 1);
      

提交回复
热议问题