<ol class="ol l_roman">
    <li>Top 3 Albums May 28, 1988</li>
    <li>'Faith' - George Michael</li>
    <li>'Dirty Dancing' - Soundtrack</li>
    <li>'Bad' - Michael Jackson</li>
</ol>
<ol class="ol l_roman">
    {% for ol_lr_item in ol_lr_items %}
        <li>{{ ol_lr_item.content }}</li>
    {% endfor %}
</ol>
{
  "ul_items": {
    "1": {
      "content": "Top 3 Albums May 23, 2009"
    },
    "2": {
      "content": "'Epiphany' - Chrisette Michele"
    },
    "3": {
      "content": "'Hannah Montana: The Movie Soundtrack'"
    },
    "4": {
      "content": "'Fantasy Ride' - Ciara"
    }
  },
  "ol_lr_items": {
    "1": {
      "content": "Top 3 Albums May 28, 1988"
    },
    "2": {
      "content": "'Faith' - George Michael"
    },
    "3": {
      "content": "'Dirty Dancing' - Soundtrack"
    },
    "4": {
      "content": "'Bad' - Michael Jackson"
    }
  }
}
  • Content:
    .ol.u_alpha {
        list-style-type: upper-alpha;
    
        &.l_alpha {
            list-style-type: lower-alpha;
        }
    
        &.u_roman {
            list-style-type: upper-roman;
        }
    
        &.l_roman {
            list-style-type: lower-roman;
        }
    }
    
  • URL: /components/raw/lists/lists.scss
  • Filesystem Path: components/01-elements/02-lists/lists.scss
  • Size: 233 Bytes
  • Handle: @lists--ol-with-lowercase-roman-numerals
  • Preview:
  • Filesystem Path: components/01-elements/02-lists/lists--ol-with-lowercase-roman-numerals.twig

No notes defined.