In a bootstrap responsive page how to center a div

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

\"position

I need to create a responsive page using bootstrap by positio

16条回答
  •  隐瞒了意图╮
    2020-12-02 05:08

    Good answer ppollono. I was just playing around and I got a slightly better solution. The CSS would remain the same, i.e. :

    html, body, .container {
        height: 100%;
    }
    .container {
        display: table;
        vertical-align: middle;
    }
    .vertical-center-row {
        display: table-cell;
        vertical-align: middle;
    }
    

    But for HTML:

    TEXT

    This would be enough.

提交回复
热议问题