CSS: create white glow around image

Viewed 231821

How can I create a white glow as the border of an unknown size image?

6 Answers

Works like a charm!

.imageClass {
  -webkit-filter: drop-shadow(12px 12px 7px rgba(0,0,0,0.5));
}

Voila! That's it! Obviously this won't work in ie, but who cares...

Related