In a bootstrap responsive page how to center a div

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

\"position

I need to create a responsive page using bootstrap by positio

16条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-02 05:07

    jsFiddle

    HTML:

    text
    TEXT

    CSS:

    #parent {    
        text-align: center;
    }
    #child {
        margin: 0 auto;
        display: inline-block;
        background: red;
        color: white;
    }
    

提交回复
热议问题