How to remove list margin?

后端 未结 5 1002
一个人的身影
一个人的身影 2020-12-11 12:43

I have a list that contains 3 items. However, it has a little margin on its left side, I want it to disappear.

Here is my code:

5条回答
  •  -上瘾入骨i
    2020-12-11 13:04

    It's the browser default and you have to reset the padding for the ul element.

    If you look at the chrome dev tool, you can see the browser defaults as below.

    Code

    ul {
      padding-left: 0;
    }
    
    ul li {
      display: inline;
      list-style: none;
      margin-left: 0;
    }
    • I have margin space on my left side
    • List 2
    • List 3

    Hi! I am a text without any margin!

提交回复
热议问题