Cards (Flexbox)
Vertical Card
Combine Cards and Simple Flexbox Grid to build cards with CSS Flexible Box.
Horizontal Card
Add class
flex-containerto the card element, to the card-section, and tweak a few styles to change the orientation of the card.
<style>
    #uxglHorizontalCard1 {
        max-width: 300px;
    }
    #uxglHorizontalCard1 .figure {
        border-radius: 4px 4px 0 0;
        overflow: hidden;
    }
    #uxglHorizontalCard1.flex-container {
        max-width: none;
    }
    #uxglHorizontalCard1.flex-container .figure {
        border-radius: 4px 0 0 4px;
       width: 150px;
    }
</style> 
				10 Most Delicious Space Foods
			Checkable Cards
Wrap cards with:
to create a checkable card.<div class="checkbox"> <label> <input type="checkbox" /> ... Card Markup Here ... </label> </div>