Horizontal Centered Menu in CSS?

前端 未结 5 1267
半阙折子戏
半阙折子戏 2020-12-16 09:08

I want to make a horizontal centered menu. I have tried using things like text align center and margin auto but can\'t get them to work. I do not want to use a table.

<
5条回答
  •  清歌不尽
    2020-12-16 09:19

    Demo

    .container{
        background:#ffffd;
        width: 100%;
        text-align:center;
    }
    li{
        display: inline-block;
    }
    

提交回复
热议问题