What technique have these guys used to get a nice melow dropshadow on the images ?

http://osc4.template-help.com/wt_32151/index.html

Thanks in advnace.

link|improve this question

they use css3 shadow effect. please search it first – sandeep Mar 21 '11 at 14:24
3  
No need to be harsh - he just asked which property it is - box-shadow is not really intuitive name for a dropshadow/outer glow looking effect when searching. – easwee Mar 21 '11 at 14:27
feedback

closed as too localized by BoltClock Apr 9 at 17:22

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

1 Answer

up vote 1 down vote accepted
-moz-box-shadow:0 0 6px rgba(0, 0, 0, 0.4)

The property is called box-shadow but is still not implemented everywhere so you better use a crossbrowser solution. Note it's not applied on the img but on the figure tag. Can't really say but I would also put it rather on a div than on an image to avoid any possible problems.

http://snipplr.com/view/30280/box-shadow-crossbrowser/

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.