In a bootstrap responsive page how to center a div

前端 未结 16 2281
长情又很酷
长情又很酷 2020-12-02 04:26

\"position

I need to create a responsive page using bootstrap by positio

16条回答
  •  天涯浪人
    2020-12-02 04:56

    CSS:

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

    HTML:

    example

    Example fiddle

提交回复
热议问题