How to make a bullet list align with text in css?

前端 未结 4 1959
心在旅途
心在旅途 2021-02-03 23:32

\"enter

The image demonstrates the problem. I want the bullet list to be aligned with the

4条回答
  •  轮回少年
    2021-02-03 23:55

    As @NicolaPasqui mentioned, for your problem you should use:

    ul {
      padding-left: 0
    }
    
    ul li {
      list-style-position: inside;
    }
    

    When setting list-style-position to inside, the bullet will be inside the list item.

    Unlike setting it to outside, where the bullet will be outside the list item.

    There is a great article about bullet style I think you could benefit from here.

提交回复
热议问题