How to center cards in bootstrap 4?

前端 未结 5 830
余生分开走
余生分开走 2020-12-02 09:11

I am using bootstrap 4 alpha 3.
I want to center the card horizontally in the middle across the page.

Preview / link: http://codepen.io/vaibhavs

5条回答
  •  时光说笑
    2020-12-02 09:53

    Add the css for .card

    .card {
            margin: 0 auto; /* Added */
            float: none; /* Added */
            margin-bottom: 10px; /* Added */
    }
    

    here is the pen

    UPDATE: You can use the class .mx-auto available in bootstrap 4 to center cards.

提交回复
热议问题