Advertisement

Google Ad Slot: content-top

Bootstrap 5 Alert

~1 min read · Bootstrap
On this page

In Bootstrap 5, alerts are used to display feedback messages in a visually appealing and dismissible format. Here's how to implement and customize alerts:

Example
Try it yourself

Dismissible Alert:

Add the .alert-dismissible and .fade show classes along with a close button.

  • .fade show: Adds a smooth fading effect.
  • data-bs-dismiss="alert": Enables the dismiss functionality.
Example
Try it yourself

Alerts with Links:

Include hyperlinks inside alerts by wrapping text with <a> tags and using .alert-link.

Example
Try it yourself