如何创建以 01 开头的有序列表

How to create an ordered list starting by 01

我正在开发一个 rails 应用程序,我在其中循环 tuto

    .container
      .row
        .col-xs-12.col-sm-12
          h1.text-gray Tutorials
          br
        .col-xs-10.col-sm-5.index-background
         - @tutos.each do |tuto|
            ol.h4.text-white
              li
                h4.text-white = link_to tuto.title, tuto_path(tuto)

我找到了这个解决方案,正如预期的那样,它从 01 开始...

ol {
list-style-type: decimal-leading-zero;
}

但它用 01 渲染所有行。

我错过了什么?

我的ol不在正确的位置,只是把它移到上面一点:)

 .container
  .row
    .col-xs-12.col-sm-12
      h1.text-gray Tutorials
      br
    .col-xs-10.col-sm-5.index-background
      ol.h4.text-white
        - @tutos.each do |tuto|
         li
           h4.text-white = link_to tuto.title, tuto_path(tuto)