I have some CSS for displaying a reflection on an element which uses -webkit-gradient to fade out:

.foo { -webkit-box-reflect: below 0 -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.5)), color-stop(0.7, transparent)); }
  • On browsers which support -webkit-box-reflect such as chrome, this displays a reflection of the element which gradually fades out as expected.
  • On browsers which don't support it at all, no reflection is show.

However, on Android's browser, a reflection is shown, but doesn't fade out.

Is there any way of getting Android to either:

  1. fade out the reflection, or
  2. not show the reflection at all.

I know I could use javascript to detect the browser and change the style accordingly, but I'd much prefer a CSS-only solution.

link|improve this question

50% accept rate
feedback

2 Answers

CSS isn't designed to handle stuff like that. In other words: no, it's not possible.

link|improve this answer
feedback

I'm having similar problems trying to do things with background gradients in the Android browser, and it appears completely unsupported

Unfortunately the above answer is right, there isn't a way to split your declaration up in a nice progressively enhanced way. You could use JavaScript/modernizr as you mentioned, and at least set a support class(es) so you don't actually have to flip the style within code.

You could try reproducing this effect with a HTML canvas element, using drawImage with your image and transforming it. Although canvas can be slow in mobile webkit.

Good luck

link|improve this answer
1  
There is a w3 working draft which will make this possible in the future using @supports queries. w3.org/TR/2011/WD-css3-conditional-20110901/#at-supports – lucas Sep 9 '11 at 8:13
feedback

Your Answer

 
or
required, but never shown

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