Search code examples
htmlcssbootstrap-4

How to center cards in bootstrap 4?


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/vaibhavsingh97/full/VjRAXW

I have tried all the different options listed on the bootstrap 4 example page for cards.

How can I achieve this?


Solution

  • UPDATE: You can use the class .mx-auto available in Bootstrap 4 & 5 to center cards.

    Or

    Add the css for .card

    .card {
            margin: 0 auto; /* Added */
            float: none; /* Added */
    }
    

    here is the pen