I am trying to create gradient text with plain HTML and CSS. Something like the text below
Check the FIDDLE. It is self explanatory.
I know how to achieve th
Following trick will only work if your text/content is on solid background.
I'm summarizing points from this blog post
span
with in the text container, for eg.
This this heading
etc.background-image [png]
through css
to this
span
It works in IE6 onwards, but IE PNG hack is required!
Hope it helps! :)