I\'m almost sure this is not possible, but just wanted to ask if I\'m correct.
I have a container with a solid background color and with text in it. This floats over a
There is an property in for webkit based browsers called -webkit-background-clip: text
. Write like this:
p{
background-image:;
background: url(http://2.bp.blogspot.com/-NSwhl6hv41Y/Th5EIJL_zZI/AAAAAAAAFc4/UGUNfb--tGc/s1600/vector_wallpaper_by_seppoftw.jpg);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size:100px;
margin:40px;
}
Check this http://jsfiddle.net/yvYG8/
Read this for more http://trentwalton.com/2011/05/19/mask-image-text/