Left align both list numbers and text

后端 未结 6 1414
陌清茗
陌清茗 2021-01-01 22:36

I\'d like to left align both the numbers and the text in my

    . This is what I\'m trying to accomplish:

6条回答
  •  独厮守ぢ
    2021-01-01 23:11

    This seems to work:

    .dinosaurs { counter-reset: item }
    .dinosaurs li { display: block }
    .dinosaurs li:before { 
      content: counter(item) ". ";
      counter-increment: item;
      width: 2em;
      display: inline-block;
    }
    

提交回复
热议问题