Shadows

Bootstrap shadows / Material Design shadows

Note: We are transitioning MDB4 to a legacy version and focusing on developing MDB5. While we'll continue to support for the transition period, we encourage you to migrate to MDB5. We're offering a huge discount on MDB5 PRO to help with your transition, enabling you to leverage the full potential of the latest version. You can find more information here.
upgrade with discount

Bootstrap shadow is an effect used in web elements that provides important visual cues about objects' depth and directional movement.

They are the only visual cue indicating the amount of separation between surfaces. An object’s elevation determines the appearance of its shadow.

Creating shadows with MDB is very easy. You only need to add one of the shadow classes to the chosen element.


Examples

Add one of the following classes to any HTML element to achieve the desired depth of a shadow

.z-depth-1

.z-depth-1-half

.z-depth-2

.z-depth-3

.z-depth-4

.z-depth-5

        
            

        <div class="example z-depth-5">
            .z-depth-5
        </div>

      
        
    

.z-depth-0

To remove an existing shadow from given element use the class .z-depth-0

Shadow on hover

Add .hoverable class to any element to easily apply the shadow hover effect.

        
            

        <div class="example hoverable">
            hover me!
        </div>

      
        
    

Images with shadow

Add one of the following classes to image to achieve a desired depth of the shadow.

        
            

        <!--Grid row-->
        <div class="row my-4">

            <!--Grid column-->
            <div class="col-lg-4 col-md-12">
                <img src="https://mdbootstrap.com/img/Photos/Others/images/81.webp" class="img-fluid z-depth-2 rounded" alt="First sample image">
            </div>
            <!--Grid column-->

            <!--Grid column-->
            <div class="col-lg-4 col-md-6">
                <img src="https://mdbootstrap.com/img/Photos/Others/images/81.webp" class="img-fluid z-depth-3 rounded" alt="First sample image">
            </div>
            <!--Grid column-->

            <!--Grid column-->
            <div class="col-lg-4 col-md-6">
                <img src="https://mdbootstrap.com/img/Photos/Others/images/81.webp" class="img-fluid z-depth-4 rounded" alt="First sample image">
            </div>
            <!--Grid column-->

        </div>
        <!--Grid row-->