CSS “margin: 0 auto” not centering

前端 未结 5 1028
独厮守ぢ
独厮守ぢ 2021-01-12 04:40

Okay I understand that this topic has been covered. But I have looked at various solutions and have had little success with them.

I just have no clue why this

5条回答
  •  爱一瞬间的悲伤
    2021-01-12 05:11

    It actually works, but without specifying the width it takes full 100%. Try something like:

       .container {
        margin: 0 auto;
        width:50%;
        }
    

    Hope this may help

提交回复
热议问题