CSS Drop shadow how is it possible? [closed]
What te开发者_如何学编程chnique have these guys used to get a nice melow dropshadow on the images ?
http://osc4.template-help.com/wt_32151/index.html
-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/
精彩评论