Why won't my list align horizontally center

前端 未结 4 466
长发绾君心
长发绾君心 2021-01-28 04:32

I\'m working on a basic nav bar project, and I\'ve trying to get this list to align center. I\'ve tried using align-content and text-align, but my bar

4条回答
  •  醉酒成梦
    2021-01-28 05:36

    You can simply give the .banner element margin-left: auto; margin-right: auto;

    .banner {
        margin-left: auto;
        margin-right: auto;
    }
    

提交回复
热议问题