Skip to content
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.
cvrebert edited this page Oct 30, 2014 · 2 revisions

E033

.alert with dismiss button must have class .alert-dismissible

For a data-dismiss="alert" alert dismissal button to work properly, the .alert must have the .alert-dismissible class.

Wrong:

<div class="alert alert-warning" role="alert">
  <button type="button" data-dismiss="alert">Dismiss</button>
  Better check yourself, you're not looking too good.
</div>

Right:

<div class="alert alert-warning alert-dismissible" role="alert">
  <button type="button" data-dismiss="alert">Dismiss</button>
  Better check yourself, you're not looking too good.
</div>
Clone this wiki locally