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
E023
Herst edited this page Dec 26, 2018
·
2 revisions
A .panel-body must be a direct child of its .panel or .panel-collapse. No levels of intervening elements are permitted between the .panel-body and the .panel or .panel-collapse.
Wrong:
<div class="panel panel-default">
<div class="my-super-special-wrapper">
<div class="panel-body">
Basic panel example
</div>
</div>
</div>Right:
<div class="panel panel-default">
<div class="panel-body">
Basic panel example
</div>
</div>A .card-body must have .card or be child of an element with it.
Bootlint documentation wiki content is licensed under the CC BY 3.0 License, and based on Bootstrap's docs which are copyright Twitter, Inc.