/ Published in: CSS
The basic idea is to make use of the CSS3 property for text-shadow to create the letterpress effect. The trick is to use a shadow color that’s lighter than the text color and offset it a little and add a bit of blur. The values above for the text-shadow property are:
Expand |
Embed | Plain Text
1 .element { 2 color: #222; 3 text-shadow: 0px 2px 3px #555; 4 } 1 text-shadow: x-offset y-offset blur color;
You need to login to post a comment.
