Bootstrap 4 Center Vertical and Horizontal Alignment

前端 未结 11 2877
借酒劲吻你
借酒劲吻你 2020-11-21 04:37

I have a page where only form exists and I want form to be placed in the center of the screen.

11条回答
  •  庸人自扰
    2020-11-21 05:03

    You need something to center your form into. But because you didn't specify a height for your html and body, it would just wrap content - and not the viewport. In other words, there was no room where to center the item in.

    html, body {
      height: 100%;
    }
    .container, .row.justify-content-center.align-items-center {
      height: 100%;
      min-height: 100%;
    }
    

提交回复
热议问题