Weird ul list issue in my case

后端 未结 2 1467
情书的邮戳
情书的邮戳 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;
    }
    
    0 讨论(0)
  • 2021-01-26 12:53

    The problem is your line-heights. Remove these from #left-nav, #right-nav, and #slide-list li.

    Also set the ul's margin to 0 (@Danko's idea).

    0 讨论(0)
提交回复
热议问题