camen design · Under the Hood #6: Beautiful CSS Dates!

Beautiful CSS Date Styles by camendesign.com

A fantastic tutorial covering some CSS styling techniques I’d never encountered before, for instance:

The attribute selector “[rel~=bookmark]” selects all hyperlinks that contain “bookmark” in their “rel” attribute. “~=” is used instead of just = as it allows for rel attributes that contain more than one word separated by spaces. E.g. “rel=”bookmark alternate””. Whilst highly unlikely, I’m just covering all bases.