Can't get list to center when using UL

后端 未结 2 784
走了就别回头了
走了就别回头了 2021-01-29 17:08

I have several

  • items centered and displaying inline within
      tags, but I cannot seem to get the
        itself to c
  • 2条回答
    •  误落风尘
      2021-01-29 17:20

        elements have a default padding-left of 40px. Remove it with padding: 0; or padding-left: 0;.

        JSFiddle Example

        You can use your browser's F12 developer tools to inspect elements and their margins or padding in the future.

    提交回复
    热议问题