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

I made this shadows: http://jsfiddle.net/PaFyt/ (webkit)

Just 6 fading out linear gradients set up with:

background-position: 0px 0px, 0px 1px, 0px 2px, 0px 3px, 0px 4px, 0px 5px;

And I wonder if this is a good way to make fading out shadows?

Or batter just use image? Image will have better compability...

What do you guys think?

share|improve this question

1 Answer

up vote 0 down vote accepted

It's better if you use pure CSS since most modern browsers support it but always prepare image equivalents as fallback for older browsers. The less image files, the faster the site!

An article that may help from CSS Tricks.

share|improve this answer
Yeah, you are right. :) I'd like to vote you up, but I miss 2 rep points... – Daniel Sitarz Feb 14 at 16:41

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.