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

Advanced Customization & Hover Effects

  • Adding hover effects: Hovering over the card will increase size & add a shadow
  • Using CSS for advanced styling
HTML
<style>
  .card:hover {
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
    transform: scale(1.05);
    transition: 0.3s ease-in-out;
  }
</style>

<div class="card">
  <div class="card-body">
    <h5 class="card-title">Hover Card</h5>
    <p class="card-text">Hover over this card to see the effect.</p>
  </div>
</div>