Place input box at the center of div

后端 未结 5 1996
借酒劲吻你
借酒劲吻你 2020-12-08 09:59

I have a div, and I want the input box to be place at it\'s center. How can I do this?

5条回答
  •  隐瞒了意图╮
    2020-12-08 10:26

    You can just use either of the following approaches:

    .center-block {
      margin: auto;
      display: block;
    }

    .parent {
      display: grid;
      place-items: center;
    }

提交回复
热议问题