I have this letterpress effect with my own font and it is perfectly working on Chrome and Safari.
.letterpress {
text-align: center;
font: 95px peskeu;
background-color: #666666;
-webkit-background-clip: text;
-moz-background-clip: text;
background-clip: text;
color: transparent;
text-shadow: 0px 2px 4px rgba(255,255,255,0.65);
}
I have recently seen that -moz-background-clip:text;
does not work.
Help will be very appreciated.