Custom list styles for ordered lists?

后端 未结 1 1870
难免孤独
难免孤独 2020-12-31 17:34

Probably an obvious beginner question: I\'m looking for an easy way to style standard HTML ordered lists without any tags like the following hierarchy:

A. O         


        
相关标签:
1条回答
  • 2020-12-31 17:42

    You can achieve this through CSS with use of list-style-type. Apply a custom class to each level of the hierarchy.

    ul.a {list-style-type: circle;}
    ul.b {list-style-type: square;}
    
    ol.c {list-style-type: upper-roman;}
    ol.d {list-style-type: lower-alpha;}
    

    Taken from: http://www.w3schools.com/css/css_list.asp

    You can specify custom text by doing this for example:

    CSS:

    ul.custom
     {
      list-style-type: none;
      padding: 0;
    }
    
    ul.custom li.aa:before { content: "aa. "; }
    ul.custom li.bb:before { content: "bb. "; }
    ul.custom li.cc:before { content: "cc. "; }
    

    HTML:

    <ul class="custom">
        <li class="aa">foo</li>
        <li class="bb">bar</li>
        <li class="cc">baz</li>
    </ul>
    

    This will result in:

    aa. foo
    bb. bar
    cc. baz
    

    I understand that this isn't the most elegant of solutions, but it is the only way I know of to do it.

    0 讨论(0)
提交回复
热议问题