i saw the great example of Chris Coyier here for a read more button.
My try was it, to use the this example for a simple fadeout from white to transparent of a text, but i only got a grey gradient.
Exmaple here: http://jsfiddle.net/9adZ3/
So guys please tell me how to fix that, thanks.
As Chris Coyier himself mentions at the end of the article you’re linking, the keyword transparent is really rgba(0,0,0,0), so that’s transparent black. When you create a gradient from white to transparent black, the result is gray.
You must transition from white to rgba(255,255,255,0), which is transparent white.
http://jsfiddle.net/FnfTA/