Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Responsive images in Bootstrap with Examples

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Bootstrap offers different classes for images to make their appearance better and also to make them responsive. Making an image responsive means that it should scale according to its parent element. That is, the size of the image should not overflow its parent and will grow and shrink according to the change in the size of its parent without losing its aspect ratio.

The different classes available in Bootstrap for images are as explained below:

  • .img-responsive class: Responsive images in Bootstrap are created by adding .img-responsive class to img tag. An img-responsive class applies: max-width: 100% | height:auto | display:block onto the image. 

HTML




<!DOCTYPE html>
<html>
<head>
    <!-- Link Bootstrap CSS -->
    <link rel="stylesheet" href=
    <!-- Link Bootstrap JS and JQuery -->
    <script src=
    </script>
    <script src=
    </script>
</head>
<body>
    <div class="container">
        <h1>Responsive Image </h1>
        <br>
        <h3>.img-responsive class</h3>
         
<p>
            Change the size of the browser window
            to see effect
        </p>
 
        <img src=
            class="img-responsive" alt="Responsive image"
            width="307" height="240"/>
    </div>
</body>
</html>

Output:

image responsive class

  • .img-fluid class: Add .img-fluid class to tag. The .img-fluid class applies : max-width: 100% | height: auto onto the image. 

HTML




<!DOCTYPE html>
<html>
<head>
    <!-- Link Bootstrap CSS -->
    <link rel="stylesheet" href=
    <!-- Link Bootstrap JS and JQuery -->
    <script src=
    </script>
    <script src=
    </script>
</head>
<body>
    <div class="container">
        <h3>.img-fluid class</h3>
         
<p>
            Change the size of the browser window
            to see effect.
        </p>
 
        <img src=
            class="img-fluid" alt="Responsive Image"
            width="307" height="240"/>
    </div>
</body>
</html>

Output:

image fluid class

  • .img-rounded class: The rounded corners to an image are added by the .img-rounded class. (Rounded corners are not supported by IE8.)

HTML




<!DOCTYPE html>
<html>
<head>
    <!-- Link Bootstrap CSS -->
    <link rel="stylesheet" href=
    <!-- Link Bootstrap JS and JQuery -->
    <script src=
    </script>
    <script src=
    </script>
</head>
<body>
    <div class="container">
        <h3>.img-rounded class</h3>
         
<p>Rounded Corners</p>
 
        <img src=
            class="img-rounded" alt="Responsive Image"
            width="307" height="240"/>
    </div>
</body>
</html>

Output:

image rounded class

  • .img-circle class: The shape of the image is made into a circle by the .img-circle class. (Rounded corners are not supported by IE8.)

HTML




<!DOCTYPE html>
<html>
<head>
    <!-- Link Bootstrap CSS -->
    <link rel="stylesheet" href=
    <!-- Link Bootstrap JS and JQuery -->
    <script src=
    </script>
    <script src=
    </script>
</head>
<body>
    <div class="container">
        <h3>.img-circle class </h3>
         
<p>Circle</p>
 
        <img src=
            class="img-circle" alt="Responsive Image"
            width="307" height="240"/>
    </div>
</body>
</html>

Output:

image circle class

  • .img-thumbnail class: Shaping of the image to a thumbnail is done by the .img-thumbnail class.

HTML




<!DOCTYPE html>
<html>
<head>
    <!-- Link Bootstrap CSS -->
    <link rel="stylesheet" href=
    <!-- Link Bootstrap JS and JQuery -->
    <script src=
    </script>
    <script src=
    </script>
</head>
<body>
    <div class="container">
        <h3>.img-thumbnail class</h3>
         
<p>Thumbnail</p>
 
        <img src=
            class="img-thumbnail" alt="Responsive Image"
            width="307" height="240">
    </div>
</body>
</html>

Output:

image thumbnail class

Supported Browser:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Opera
  • Safari

My Personal Notes arrow_drop_up
Last Updated : 28 Apr, 2022
Like Article
Save Article
Similar Reads
Related Tutorials