CSS text-align: center; is not centering things

前端 未结 7 1466
旧巷少年郎
旧巷少年郎 2021-02-03 17:35

I have the following html:


      
7条回答
  •  梦毁少年i
    2021-02-03 18:22

    I assume you want all the items next to each other, and the whole thing to be centered horizontally.

    li elements are display: block by default, taking up all the horizontal space.

    Add

    div#footer ul li { display: inline }
    

    once you've done that, you probably want to get rid of the list's bullets:

    div#footer ul { list-style-type: none; padding: 0px; margin: 0px }
    

提交回复
热议问题