I'm interested in ways to render a span that to look something like one of these:

some random images of stamps

Here are the tricks I plan on using:

  • @font-face
  • -{moz/webkit/o}-transform:rotate

It's for a personal project so assuming the most modern CSS support is fine. Maybe border-images could help? I'd like to avoid image splicing all over the place -- if it really comes down to that I'll just skip the border all together and rely on a font for the look.

I'm just curious how the CSS gurus around here would approach this.

UPDATE

There is now a CSS property for this, mask-image. More here.

link|improve this question

72% accept rate
Going a little too far...? – BoltClock Jun 2 '11 at 6:02
Possibly, I'm leaving open the possibility that it'll be too much. Also, I don't plan on using such garish colors. But the thing is, the project I'm working on is designed to emulate a "paper-based" work flow that users are already familiar with, and where "stamps" have a semantic meaning. If I can emulate that, it will help users. – pat Jun 2 '11 at 6:08
+1 good question – andyb Jun 2 '11 at 7:20
feedback

3 Answers

up vote 1 down vote accepted

There is no specific css solution for the grunge look. You'll have to rely on a typeface for that, or an image (such as some sort of 'grungy' splotch pattern that matches the background color on top of the type).

The only other CSS that might be applicable is to use an RGBA color set to perhaps 80 or 90% opacity to allow a bit of whatever background pattern you might use seep through as would be the case with a real ink stamp.

I love doing as much as I can with CSS, but for that specific look, I'd stick with an image. Images still serve a purpose. ;o)

link|improve this answer
Oh, "grunge" -- that's the word I couldn't remember when I was researching this! Searching for "grunge text CSS" turned up this: jankoatwarpspeed.com/post/2008/08/09/… which is a helpful start... – pat Jun 2 '11 at 6:09
Yea, that technique is basically the 'image on top of the type' option. Not a pure CSS solution but still useful. – DA. Jun 2 '11 at 6:33
feedback

You could use a font face for the font, but you'd still need an image for the borders. I would suggest saving yourself the hassle of cross browser debugging and using a transparent .png if possible.

link|improve this answer
feedback

You can achieve the distressed font effect by importing (http://www.font-face.com/) a font similar to http://www.fontspace.com/category/stamp.

I am not sure if you can do the border with plain CSS. You can add a distressed transparent overlay over your stamp which will make it look good, and will not require the custom font.

CSS can be used to create the double stamp border with CSS double border + outline. You need to make the outer border color white, and the inner and outline colors the same. The outline should be thicker than the border.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.