如何创建从01

时间:2016-08-20 23:52:23

标签: css ruby-on-rails sass slim-lang

我正在使用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。

渲染所有的行

我错过了什么?

1 个答案:

答案 0 :(得分:0)

我的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)