How do I make
  • tags in a
      use letters
  • 后端 未结 2 1291
    眼角桃花
    眼角桃花 2021-01-20 11:46

    I want my WP site to have a ordered list instead of listing with numbers it will list with letters.

    I have applied attributes to the OL and it doesn\'t work. It i

    相关标签:
    2条回答
    • 2021-01-20 12:12

      Use the list-style-type CSS property on the <ol> tag.

      Eg.

      ol {
          list-style-type: lower-alpha;
      }
      

      See here for the full list of options: http://www.w3schools.com/cssref/pr_list-style-type.asp

      0 讨论(0)
    • 2021-01-20 12:27

      You should be able to use the type attribute like this.

      <ol type="a">
          <li>Apples</li>
          <li>Bananas</li>
          <li>Oranges</li>
      </ol>
      
      0 讨论(0)
    提交回复
    热议问题