Answers for "Which bootstrap class will you use to make images responsive?"

0

responsive image in bootstrap

<img src="..." class="img-responsive">
Posted by: Guest on May-29-2021
9

bootstrap image size

<div class="w-25 p-3" style="background-color: #eee;">Width 25%</div>
<div class="w-50 p-3" style="background-color: #eee;">Width 50%</div>
<div class="w-75 p-3" style="background-color: #eee;">Width 75%</div>
<div class="w-100 p-3" style="background-color: #eee;">Width 100%</div>
Posted by: Guest on October-12-2020
-1

image container bootstrap

<!-- FULL-WIDTH IMAGE --> 
<div class="container-fluid">
  <div class="row">
    <div class="col-12 px-0">
      <img class="img-fluid" src="your-image">
    </div>
  </div>  
</div>

<!-- 12 COLUMN IMAGE --> 
<div class="container-fluid">
  <div class="row">
    <div class="col-12">
      <img class="img-fluid" src="your-image">
    </div>
  </div>  
</div>
Posted by: Guest on September-04-2021
1

bootstrap responsive images tutlane

<img src="fox.png" class="img-fluid" />
Posted by: Guest on May-30-2021
1

bootstrap img thumbnail

<img src="..." alt="..." class="img-thumbnail">
Posted by: Guest on June-05-2020
0

bootstrap img src

<img src="..." class="rounded mx-auto d-block" alt="...">
Posted by: Guest on December-14-2020

Code answers related to "Which bootstrap class will you use to make images responsive?"

Browse Popular Code Answers by Language