counter-increment in CSS

后端 未结 2 1919
有刺的猬
有刺的猬 2020-12-21 12:25

I am trying to get an ordered list first item shouldn\'t start with number. The number should start from second item.

please check this URL what I am trying to achie

2条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-21 12:58

    Try to add this rule:

    ol li:nth-of-type(1):before{content: "";}
    

    This will remove the zero at the first element.

提交回复
热议问题