2 E033
cvrebert редактировал(а) эту страницу 2014-10-30 14:43:34 -07:00

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>