This repository has been archived by the owner on Feb 1, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 311
E034
cvrebert edited this page Oct 30, 2014
·
1 revision
Wrong:
<div class="alert alert-warning alert-dismissible" role="alert">
You're not looking too good.
<button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
Better check yourself
</div>
<div class="alert alert-warning alert-dismissible" role="alert">
<ul>
<li>Other elements like this list should come after the close button</li>
</ul>
<button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
Better check yourself, you're not looking too good.
</div>
Right:
<div class="alert alert-warning alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
Better check yourself, you're not looking too good.
</div>
<div class="alert alert-warning alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<ul>
<li>Other elements like this list should come after the close button</li>
</ul>
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.