CSS text-align: center; is not centering things

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

I have the following html:


      
7条回答
  •  生来不讨喜
    2021-02-03 17:59

    If you want the text within the list items to be centred, try:

    ul#menu-utility-navigation {
      width: 100%;
    }
    
    ul#menu-utility-navigation li {
      text-align: center;
    }
    

提交回复
热议问题