How to center a navigation bar with CSS or HTML?

后端 未结 6 1453
慢半拍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:28

    #nav ul {
        display: inline-block;
        list-style-type: none;
    }
    

    It should work, I tested it in your site.

    enter image description here

提交回复
热议问题