DEV Community

Cover image for Tailwind CSS drop shadow effect for PNG images
Chris Bongers
Chris Bongers

Posted on • Originally published at daily-dev-tips.com

Tailwind CSS drop shadow effect for PNG images

Did you know that you can apply a drop-shadow to PNG images? This drop shadow will follow the outline of the image!

In this article, I'll show you how to achieve this drop shadow effect in Tailwind CSS.

Tailwind drop shadow effect for PNG images

In the above image, you can see the default PNG image on the left and a drop-shadow effect on the right.

Tailwind CSS Drop Shadow effect

To achieve this effect, you need to use a PNG image (transparent image).

And apply the drop-shadow class.
You can pick any of the following variants:

  • drop-shadow-sm
  • drop-shadow
  • drop-shadow-md
  • drop-shadow-lg
  • drop-shadow-xl
  • drop-shadow-2xl

Note if you are still in Tailwind V2, you'll have to use the filter class as well.

Tailwind CSS Box Shadow effect

Alternatively, you might have seen or heard about the box-shadow effect. This effect will not wrap around the edges of your PNG, but instead, use the box it is in.

You can see the box shadow on the left and the drop shadow effect on the right in the image below.

Tailwind box-shadow vs drop shadow effect

The box shadow can be added by using any of the following classes:

  • shadow-sm
  • shadow
  • shadow-md
  • shadow-lg
  • shadow-xl
  • shadow-2xl

I've also made this CodePen example to see the difference between the options.

Thank you for reading, and let's connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Oldest comments (2)

Collapse
 
jonaspetri profile image
Jonas Petri

Great article! I did see this effect, but didn’t understand what it did, so thanks for explaining that clearly! I can definitely be useful in many cases.

Collapse
 
dailydevtips1 profile image
Chris Bongers

Glad you liked it Jonas.
Good to see the differences between them.