Left align both list numbers and text

后端 未结 6 1409
陌清茗
陌清茗 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:19

    You could position the list elements like so:

        .dinosaurs {
      list-style-position: inside;
    }
    
    .dinosaurs li{
      position: relative;
    }
    .dinosaurs li a {
      position: absolute;
      left: 30px;
    }
    

    which would yield http://jsfiddle.net/wBjud/2/

提交回复
热议问题