How do I make
  • tags in a
      use letters
  • 后端 未结 2 1298
    眼角桃花
    眼角桃花 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

        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

    提交回复
    热议问题