Images

Vue Bootstrap 5 Images

Documentation and examples for opting images into responsive behavior (so they never become larger than their parent elements) and add lightweight styles to them—all via classes.


Responsive images

Images in MDB are made responsive with .img-fluid. This applies max-width: 100%; and height: auto; to the image so that it scales with the parent element.

        
            
            <template
              ><img src="https://mdbootstrap.com/img/new/slides/041.webp" class="img-fluid" alt="..."
            /></template>
          
        
    

Thumbnails

In addition to our border-radius utilities, you can use .img-thumbnail to give an image a rounded 1px border appearance.

        
            
            <template>
              <img
                src="https://mdbootstrap.com/img/new/standard/city/041.webp"
                class="img-thumbnail"
                alt="..."
              />
            </template>
          
        
    

Shadows

By using our shadow classes you can add a shadow to the image. In the example below, we add shadow-2-strong class.

        
            
            <template>
              <img
                src="https://mdbootstrap.com/img/new/standard/city/042.webp"
                class="img-fluid shadow-2-strong"
                alt=""
              />
            </template>
          
        
    

By adding .hover-shadow class to the element you can apply a shadow hover effect.

        
            
            <template>
              <img
                src="https://mdbootstrap.com/img/new/standard/city/043.webp"
                class="img-fluid hover-shadow"
                alt=""
              />
            </template>
          
        
    

Masks

You can cover the image with mask to achieve the desired contrast and for example, place text on it.

Sample

Can you see me?

        
            
            <template>
              <div class="bg-image">
                <img
                  src="https://mdbootstrap.com/img/new/standard/city/053.webp"
                  class="img-fluid"
                  alt="Sample"
                />
                <div class="mask" style="background-color: rgba(0, 0, 0, 0.6)">
                  <div class="d-flex justify-content-center align-items-center h-100">
                    <p class="text-white mb-0">Can you see me?</p>
                  </div>
                </div>
              </div>
            </template>
          
        
    

Hover effects

By using .overlay class you can apply gentle and decorative hover effects to the image.

        
            
            <template>
              <div class="bg-image hover-overlay">
                <img src="https://mdbootstrap.com/img/new/fluid/city/055.webp" class="img-fluid" />
                <a href="#!">
                  <div class="mask overlay" style="background-color: rgba(57, 192, 237, 0.2)"></div>
                </a>
              </div>
            </template>
          
        
    

Shapes

By using border utilities you can change the shape of the image.

.rounded
.rounded-circle
.rounded-pill
        
            
            <template>
              <img
                src="https://mdbootstrap.com/img/new/standard/city/047.webp"
                class="img-fluid rounded"
                alt=""
              />
              <img
                src="https://mdbootstrap.com/img/new/standard/city/047.webp"
                class="img-fluid rounded-circle"
                alt=""
              />
              <img
                src="https://mdbootstrap.com/img/new/standard/city/047.webp"
                class="img-fluid rounded-pill"
                alt=""
              />
            </template>