Currently, I am developing a Ruby on Rails application in which I am iterating over the 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)
During my exploration, I came across a solution that begins with 01
as anticipated...
ol {
list-style-type: decimal-leading-zero;
}
However, it appears to display all lines with "01" instead of incrementing.
Any advice on what I might be overlooking?