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 310
E045
Herst edited this page Aug 18, 2019
·
2 revisions
The .img-responsive
class is only meant for use on <img>
elements. Using it on other elements is nonsensical.
Wrong:
<div class="img-responsive">
<img src="foo.jpg" />
</div>
Right:
<div>
<img src="foo.jpg" class="img-responsive" />
</div>
The .img-fluid
class is only meant for use on <img>
elements. Using it on other elements is nonsensical.
Wrong:
<div class="img-fluid">
<img src="foo.jpg" />
</div>
Right:
<div>
<img src="foo.jpg" class="img-fluid" />
</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.