Card

Card in NextGenCSS!!!

Card

This creates a basic Card component in HTML and CSS

Use this component by adding .cardclass in element....

The .card-title class to give title to the card

And .card-body class to write body to the card

Examples

<div class="card">
    <h3 class="card-title">Hello</h3>
    <p class="card-body">Card Body</p>
</div>

Last updated