what is a bootstrap card and how would you create one?
ReportQuestion
2 years ago 725 views
A card is bordered box with padding surrounding its content. It has options for headers, footers, content, and colors, among other things.
<div class="card">
<div class="card-header">Header</div>
<div class="card-body">Body</div>
<div class="card-footer">Footer</div>
</div>
Thread Reply