CSS text-align: center; is not centering things

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

I have the following html:


                      
相关标签:
7条回答
  • 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 }
    
    0 讨论(0)
提交回复
热议问题