We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.img-responsive
<img>
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>
.img-fluid
The .img-fluid class is only meant for use on <img> elements. Using it on other elements is nonsensical.
<div class="img-fluid"> <img src="foo.jpg" /> </div>
<div> <img src="foo.jpg" class="img-fluid" /> </div>