Card in NextGenCSS!!!
Last updated 7 months ago
This creates a basic Card component in HTML and CSS
Use this component by adding .cardclass in element....
.card
The .card-title class to give title to the card
.card-title
And .card-body class to write body to the card
.card-body
<div class="card"> <h3 class="card-title">Hello</h3> <p class="card-body">Card Body</p> </div>