firefox上带有编号的嵌套有序列表问题

firefox上带有编号的嵌套有序列表问题,firefox,nested,html-lists,mozilla,Firefox,Nested,Html Lists,Mozilla,董事会发展…. 多久一次,通过什么程序等待响应 董事会发展… 包含所有…副本的笔记本等待响应 董事会负责…… 描述等待响应的程序 描述等待响应的过程 提交投资并…等待回复 等待响应 董事会雇佣…… 头部是否…?正在等待响应 描述年度…等待响应 提供副本…等待响应 董事会… 董事会如何……?等待响应 描述正在等待响应的工作… 请使用Firefox浏览器检查JSFIDLE上的代码。这在Chrome和Safari浏览器上运行得非常好,但在Firefox和IE上却出现了问题 如有任何帮助,我们将不胜感


  • 董事会发展….
  • 多久一次,通过什么程序
  • 等待响应
  • 董事会发展…
  • 包含所有…
  • 副本的笔记本等待响应
  • 董事会负责……
  • 描述等待响应的程序
  • 描述等待响应的过程
  • 提交投资并…
  • 等待回复
  • 等待响应
  • 董事会雇佣……
  • 头部是否…?
  • 正在等待响应
  • 描述年度…
  • 等待响应
  • 提供副本…
  • 等待响应
  • 董事会…
  • 董事会如何……?
  • 等待响应
  • 描述正在等待响应的工作…
  • 请使用Firefox浏览器检查JSFIDLE上的代码。这在Chrome和Safari浏览器上运行得非常好,但在Firefox和IE上却出现了问题

    如有任何帮助,我们将不胜感激


    谢谢

    我也遇到了同样的问题,但在做一些研究时,我看到了这个问题,关于如何正确地处理嵌套列表

    您需要将嵌套的
    ol
    列表放在li标记内。

    要使其在所有浏览器中正常工作,您的nexted列表应如下所示:

    变化:

    • strong
      标记现在位于
      li
      标记内
    • ol
      现在位于父
      li
      包装器中
    
    
  • 董事会发展……
  • 多久一次,通过什么程序
  • 等待 响应
  • 董事会发展…
  • 包含所有…副本的笔记本 响应
  • 董事会负责……
  • 描述等待……?
  • 的程序 响应
  • 描述等待的过程。
  • 响应
  • 提交投资并…
  • 等待 响应
  • ..
  • 等待响应
  • 董事会雇佣…
  • 头部是否…?
  • 正在等待响应
  • 描述年度…
  • 等待回复
  • 提供副本…
  • 等待响应
  • 董事会…
  • 董事会如何……?
  • 等待响应
  • 描述正在工作的…
  • 等待响应
    尝试将列表嵌套在中。非常感谢:)。。。成功了!!!
    <ol>
      <strong><li>The board develops ....</li></strong>
        <ol type="a">
          <strong><li>How often and by what procedure .... ?</li></strong><span class="pending-response">Awaiting response</span>
        </ol>
    
      <strong><li>The board develops ...</li></strong>
        <ol type="a">
          <strong><li>A notebook containing a copy of all ...</li></strong><span class="pending-response">Awaiting response</span>
        </ol>
    
      <strong><li>The board is responsible ...</li></strong>
        <ol type="a">
          <strong><li>Describe the procedures by which ...?</li></strong><span class="pending-response">Awaiting response</span>
          <strong><li>Describe the process for ...</li></strong><span class="pending-response">Awaiting response</span>
          <strong><li>Submit the investment and ...</li></strong><span class="pending-response">Awaiting response</span>
          <strong><li>...</li></strong><span class="pending-response">Awaiting response</span>
        </ol>
    
      <strong><li>The board employs...</li></strong>
        <ol type="a">
          <strong><li>Is the head ...?</li></strong><span class="pending-response">Awaiting response</span>
          <strong><li>Describe the annual ...</li></strong><span class="pending-response">Awaiting response</span>
          <strong><li>Supply a copy ...</li></strong><span class="pending-response">Awaiting response</span>
        </ol>
    
      <strong><li>The board ...</li></strong>
        <ol type="a">
          <strong><li>How does the board ...?</li></strong><span class="pending-response">Awaiting response</span>
          <strong><li>Describe the working ...</li></strong><span class="pending-response">Awaiting response</span>
        </ol>
    
    </ol>