Create line numbers on pre with CSS only

后端 未结 3 637
长情又很酷
长情又很酷 2020-11-28 21:55

I try to style a code pre box with line numbers in front of each line. I prefer to do it with CSS only. This is what I have done

3条回答
  •  迷失自我
    2020-11-28 22:18

    You have to increment line in your span:

    pre span {
        display: block;
        line-height: 1.5rem;
        counter-increment: line;
    }
    

    Have a look at this updated jsfiddle.

提交回复
热议问题