Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
drop shadow only bottom css3

I've been struggling with this for a while and wondered if there is a way to create a box-shadow that has a blur but only appears on one side of an element.

I have setup a JSFiddle, You can see that the blur still shows on the top and bottom of the element? Any ideas?

share|improve this question
I've taken a look at this link WTP, but it doesn't perform as well as I need it to on bigger shadows. – Sean H Jenkins Dec 11 '11 at 11:35

marked as duplicate by rightfold, casperOne Dec 12 '11 at 5:45

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

me again.

I have figured this out. I use the :before CSS selector like so

.element:before
{
content:'';
position:absolute;
left:-5px;
right:100%;
top:0;
bottom:0;
box-shadow: -10px 0 20px #aaa;
}

I have edited my JSFiddle if anyone needs to know how to do this.

share|improve this answer

I'm not sure it's a perfect solution but you can create a container for your div and hide 3 side by reducing the width of the inner div and playing with the float left or right depending on wich side you want the shaddow. I guest with fixed witdh it will be easier to manage.

Take a look at the example : http://jsfiddle.net/etienne_carre/rhKJF/4/

share|improve this answer

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