how can I center this menu with CSS

后端 未结 4 1330
粉色の甜心
粉色の甜心 2021-01-15 06:29

I have this menu fixed, how can I center this menu?
I already tried with margin: 0 auto, and float: left, but it doesn\'t work.
Are there any way to center ??
he

4条回答
  •  礼貌的吻别
    2021-01-15 07:06

    #main-nav { list-style: none outside; text-align: center; }
    
    #main-nav li { display: inline; }
    
    #main-nav li a { display: inline-block; }
    

    I think this is what you are looking for

提交回复
热议问题