Weird ul list issue in my case

后端 未结 2 1468
情书的邮戳
情书的邮戳 2021-01-26 11:47

I am having a weird issue with my ul list

I have something like

Slide

2条回答
  •  迷失自我
    2021-01-26 12:47

    For default all elements has properties in this case ul:

    ul {
      display: block;
      list-style-type: disc;
      margin-before: 1em;
      margin-after: 1em;
      margin-start: 0;
      margin-end: 0;
      padding-start: 40px; 
    }
    

    You need to reset those properties : Try

    ul {
      margin:0;
      padding:0;
    }
    

提交回复
热议问题