Course Content
Bootstrap 5 Alerts
0/1
Progress Bars
0/1
Spinners
0/1
Pagination
0/1
List Groups
0/1
Bootstrap 5 Scrollspy
0/1
Bootstrap
About Lesson

Styling Cards with Colors & Links

  • .bg-primary, .bg-success, .bg-danger → Change background color
  • .text-white, .text-dark → Change text color
  • .card-link → For Adding Links in Card
HTML
<div class="card bg-primary text-white">
  <div class="card-body">
    <h5 class="card-title">Primary Card</h5>
    <p class="card-text">This card has a blue background.</p>
    <a href="#" class="card-link text-white">Read More</a>
  </div>
</div>