How can I horizontally center a button element in a div element?

后端 未结 3 1788
隐瞒了意图╮
隐瞒了意图╮ 2020-12-24 01:09

I don\'t want to add CSS to my div element (e.g.

).

I only want to add CSS code to the button element.

<
3条回答
  •  难免孤独
    2020-12-24 01:49

    button {
        margin:0 auto;
        display:block;
    }
    

    button {
      margin: 0 auto;
      display: block;
    }

提交回复
热议问题