Search code examples
htmlcssnavcentering

How to center a navigation bar with CSS or HTML?


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 center it.


Solution

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

    It should work, I tested it in your site.

    enter image description here