div with display:inline-block margin 0 auto not center

后端 未结 3 951
南方客
南方客 2020-12-07 14:13

I try to

3条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-07 15:01

    display:table; would position it in center too:

    CSS:

      .button{
        display: table;
        margin: 0 auto;
        }
    

    HTML:

    < /div>

    Note: Using inline styles is a bad practice.

提交回复
热议问题