Center navigation bar with CSS

后端 未结 2 832
南方客
南方客 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/

提交回复
热议问题