Alerts
Use alerts to provide contextual feedback to your users based on their input and behaviour
Alerts
Alerts can be used to show your users error, success, informational or warning messages. Use the color variables such as alert-primary
or alert-secondary
to add your preferred colors:
This is a primary alert with an example link. Give it a click if you like.
This is a secondary alert with an example link. Give it a click if you like.
This is a success alert with an example link. Give it a click if you like.
This is a info alert with an example link. Give it a click if you like.
This is a warning alert with an example link. Give it a click if you like.
This is a danger alert with an example link. Give it a click if you like.
<div class="alert alert-primary" role="alert">
<span class="alert-inner--text">This is a primary alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.</span>
</div>
<div class="alert alert-secondary" role="alert">
<span class="alert-inner--text">This is a secondary alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.</span>
</div>
<div class="alert alert-success" role="alert">
<span class="alert-inner--text">This is a success alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.</span>
</div>
<div class="alert alert-info" role="alert">
<span class="alert-inner--text">This is a info alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.</span>
</div>
<div class="alert alert-warning" role="alert">
<span class="alert-inner--text">This is a warning alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.</span>
</div>
<div class="alert alert-danger" role="alert">
<span class="alert-inner--text">This is a danger alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.</span>
</div>
Alerts with icons Pro
The following alerts are coupled with descriptive icons:
Primary alert! You successfully read this important alert message.
Secondary note! You successfully read this important alert message.
Well done! You successfully read this important alert message.
Heads up! This alert needs your attention, but it's not super important.
Warning! Better check yourself, you're not looking too good.
Oh snap! Change a few things up and try submitting again.
<div class="alert alert-primary alert-dismissible fade show" role="alert">
<span class="alert-inner--icon"><i class="fas fa-brain"></i></span>
<span class="alert-inner--text"><strong>Primary alert!</strong> You successfully read this important alert message.</span>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="alert alert-secondary alert-dismissible fade show" role="alert">
<span class="alert-inner--icon"><i class="far fa-dizzy"></i></span>
<span class="alert-inner--text"><strong>Secondary note!</strong> You successfully read this important alert message.</span>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="alert alert-success alert-dismissible fade show" role="alert">
<span class="alert-inner--icon"><i class="far fa-thumbs-up"></i></span>
<span class="alert-inner--text"><strong>Well done!</strong> You successfully read this important alert message.</span>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="alert alert-info alert-dismissible fade show" role="alert">
<span class="alert-inner--icon"><i class="far fa-bell"></i></span>
<span class="alert-inner--text"><strong>Heads up!</strong> This alert needs your attention, but it's not super important.</span>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="alert alert-warning alert-dismissible fade show" role="alert">
<span class="alert-inner--icon"><i class="fas fa-exclamation-circle"></i></span>
<span class="alert-inner--text"><strong>Warning!</strong> Better check yourself, you're not looking too good.</span>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="alert alert-danger alert-dismissible fade show" role="alert">
<span class="alert-inner--icon"><i class="fas fa-fire"></i></span>
<span class="alert-inner--text"><strong>Oh snap!</strong> Change a few things up and try submitting again.</span>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>