Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to achieve a Fadeout effect with CSS3 Box Shadow?

Here's what I have so far This only adds inset/inner shadow to the vertical sides but I need to achieve a fade out effect at the top.

-moz-box-shadow: inset 5px 0 7px -5px #a4a4a4, inset -5px 0 7px -5px #a4a4a4;
-webkit-box-shadow: inset 5px 0 5px -5px #a4a4a4, inset -5px 0 5px -5px #a4a4a4;
box-shadow: inset 5px 0 7px -5px #a4a4a4, inset -5px 0 7px -5px #a4a4a4;

See the image below to see the Expected Results and what I currently have.

Expected and Current Results

share|improve this question
1  
use :before for it and if it on same plane then rotate it by 90 deg in y-axis – Arpit Srivastava Sep 17 '12 at 3:41
@Arpit Srivastava I know what the :before psuedo element is used for but I don't understand what are you trying to tell me, how exactly does this achieve a fade out effect? – Eric Bergman Sep 17 '12 at 4:01
1  
fadeout can be done by decrease it's opacity or use shadow as rgb(color,color,color,opacity) – Arpit Srivastava Sep 17 '12 at 4:05
@joshnh The question hasn't been answered yet that's why I didn't' mark any answer, your solution seems interesting but it only works with webkit and that is not a good solution but thanks for the suggestion, it may help someone. – Eric Bergman Oct 18 '12 at 5:02

2 Answers

You can not transition CSS3 styles that contain multiple values -:

You CAN transition from say one color to another in CSS3 but you can NOT transition between gradiens in CSS3 as it gets confused with the multiple values, it will be the same with your multiple shadow values also.

Ah, I think I see what you are trying to achieve. A solution maybe would be to try and reproduce the look you are after without using Shadows - A link below shows a possible solution using borders instead of shadows, see what you think. http://css-tricks.com/examples/GradientBorder/

share|improve this answer

I also needed something like that:

Basically it is about giving the outer div a drop-shadow and placing the inner div with position:relativ to the outer div with a gradient from transparent to the needed background color:

http://jsfiddle.net/vBuxt/1/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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