This repository was archived by the owner on Feb 1, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 309
E033
cvrebert edited this page Oct 30, 2014
·
2 revisions
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>Bootlint documentation wiki content is licensed under the CC BY 3.0 License, and based on Bootstrap's docs which are copyright Twitter, Inc.