How I can center a menu bar with ul

后端 未结 3 1321
孤街浪徒
孤街浪徒 2020-12-12 04:20

I have a simple menu bar inside a div and I can center the div but I want to center the menu bar inside the div.

This is the code:

CSS:

3条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-12 04:45

    First off all, make sure the div is wider that the menu bar. You can try

    display:inline
    

    or if not

    text-align:center;
    

    for the div

提交回复
热议问题