<ol class="ol l_alpha">
    <li>Top 3 Albums May 31, 2003</li>
    <li>'The Golden Age of Grotesque' - Marilyn Manson</li>
    <li>'Get Rich or Die Tryin' - 50 Cent</li>
    <li>'Year of the Spider' - Cold</li>
</ol>
<ol class="ol l_alpha">
    {% for ol_la_item in ol_la_items %}
        <li>{{ ol_la_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_la_items": {
    "1": {
      "content": "Top 3 Albums May 31, 2003"
    },
    "2": {
      "content": "'The Golden Age of Grotesque' - Marilyn Manson"
    },
    "3": {
      "content": "'Get Rich or Die Tryin' - 50 Cent"
    },
    "4": {
      "content": "'Year of the Spider' - Cold"
    }
  }
}
  • 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-alphabet
  • Preview:
  • Filesystem Path: components/01-elements/02-lists/lists--ol-with-lowercase-alphabet.twig

No notes defined.