Exploring the capabilities of the -webkit-box-reflect property in Chrome has proven to be quite interesting. By utilizing the code snippet provided below (taken directly from the Webkit blog), I have been able to achieve a fading reflection effect:
-webkit-box-reflect:
below 5px
-webkit-gradient(
linear, left top, left bottom,
from(transparent), color-stop(0.5, transparent), to(white)
);
However, I am facing a challenge when it comes to adjusting the opacity of the reflection mask to a more subtle level. It appears that using rgba() for this purpose is causing some issues. Has anyone managed to successfully implement varying levels of opacity in this context?
Any assistance on this matter would be highly valued. Thank you!