How to center a navigation bar with CSS or HTML?

后端 未结 6 1450
慢半拍i
慢半拍i 2020-12-05 11:58

I am having difficulty with centering the navigation bar on this page.

I tried nav { margin: 0 auto; } and a bunch of other ways, but I still can\'t cen

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-05 12:29

    If you have your navigation

      with class #nav Then you need to put that
        item within a div container. Make your div container the 100% width. and set the text-align: element to center in the div container. Then in your
          set that class to have 3 particular elements: text-align:center; position: relative; and display: inline-block;

          that should center it.

提交回复
热议问题