Center navigation bar with CSS

后端 未结 2 810
南方客
南方客 2021-01-28 07:41

I am trying to center my nav bar. I checked my sites but nothing works and I\'m completely stumped as to why it won\'t center, here is my navigation bar HTML that I want to cent

相关标签:
2条回答
  • 2021-01-28 08:19

    On your .menu class, you do have text-align:center set. We can certainly use that to center the child nodes.

    So within your .menu li css property, add display:inline-block and remove the floats. This will center your list items.

    See the fiddle: http://jsfiddle.net/RGREA/

    0 讨论(0)
  • 2021-01-28 08:27
    <style>
    div.nav{margin: 3px auto;}
    </style>
    
    0 讨论(0)
提交回复
热议问题