I would like to create my title image out of pure CSS3, but there is one feature that I'm not quite sure I can even do. Plus, the features that I know are possible don't seem to mix well. I don't know CSS very well, at least anything past the basics. I was hoping for some help.
Gradient Text - i did this, and it works by itself.
Drop Shadow - when combined, overrides gradient and i get a solid black shadow.
Inner Bevel - ?????
Is it possible to do all three things with CSS3 alone? I've googled and racked my brain but I can't seem to get it.
this is my starting point:
h1 {
text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
font-family: sans-serif;
font-size: 72px;
background: -webkit-linear-gradient(#FFF, #2358A6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
This is what i'm trying to achieve (not too crazy right?):
The font isn't important to me right now, just the effects. sans-serif is the default linux font, that's why its there. If it's not possible, i understand, just tell me it's not possible and i'll continue to use my png.