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 308
E038
Herst edited this page Oct 20, 2018
·
2 revisions
Note: This check has been removed in Bootlint v1.x.
The .media-left and .media-right positioning classes should only be used within .media objects, since this is their express purpose. Using them outside of a .media object is nonsensical.
Wrong:
<body>
<div class="media-left">
...
</div>
</body>Right:
<div class="media">
<div class="media-left">
...
</div>
<div class="media-body">
...
</div>
</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.