Unordered List Won't Center Align

前端 未结 1 867
执念已碎
执念已碎 2021-01-28 23:23

h1 seems to have no trouble centering, however, the list (menu bar) will not align, it seems to be indented slightly. Please explain.

My HTML:

相关标签:
1条回答
  • 2021-01-29 00:05

    There's still default padding on the ul element. Change the CSS of your ul to this and it'll work:

    ul{
      position:relative;
      display: inline-block;  
      list-style: none;
      width:100%;
      text-align: center;
      margin: auto;
      padding: 0;
    }
    
    0 讨论(0)
提交回复
热议问题