Skip to content
Bootstrap

Alerts

Display contextual messages with dismissible alerts.

#alerts#components

Code

bootstrap
<div class="alert alert-success" role="alert">
  Record saved successfully.
</div>

<!-- Dismissible alert -->
<div class="alert alert-warning alert-dismissible fade show" role="alert">
  <strong>Heads up!</strong> Your trial ends soon.
  <button type="button" class="btn-close"
          data-bs-dismiss="alert"></button>
</div>

<!-- Alert with extra content -->
<div class="alert alert-danger" role="alert">
  <h4 class="alert-heading">Error</h4>
  <p>Something went wrong.</p>
  <hr>
  <p class="mb-0">Try again or contact support.</p>
</div>