View the finished example: Adding style to your rel link.
There’s a little attribute in HTML links that is starting to get a bit of attention lately. The “rel” attribute is a sparsely defined attribute that applies some meta information about a link’s relationship to other documents. Unfortunately, this information is usually hidden from your users. Let’s take a light-hearted stab at turning it into a visual element.
Rel attribute usage
While the W3C originally considered the rel attribute to describe the relationship of pages to each other, i.e. next, previous, directory, and start. The attribute has been adopted by the Microformat community for its inherit usefulness. The rel attribute is now used for tags, to define your relationship to someone, and even to tell search engines not to bother following a link.
The opportunities to use the rel attribute are seemingly endless. There are more proposals to define people you don’t like and links for voting.
But all of this flexibility comes at a small price. To remain valid, you need to tell the browser what these new rel values may actually mean. This is handled by linking to appropriate profiles. Just simply insert the profiles into your head tag. Multiple profiles may throw a validation error, but it’s ok. You don’t need to do this for the standard rel values.
We will be using the CSS3 attribute selector functionality to look at the value of the rel attribute and apply some style accordingly. First we’ll add some padding and a background image to any link that has a rel attribute. We’ll then use background positioning to display an icon that is appropriate for the link. It’s a fairly simple hack.
For more information on using attribute selectors, check out my previous posts:
- Progressive enhancement of links using the CSS attribute selector
- Attribute selectors to provide language information
Sample HTML Code
Sample CSS
a[rel] {padding-left:20px; background:url(rel-sprite.png) no-repeat 0 0; }
a[rel~="help"] {background-position: 0 -350px ;}
a[rel~="license"] {background-position: 0 -1347px ;}
a[rel~="no-follow"] {background-position: 0 -1200px ;}
a[rel~="tag"] {background-position: 0 -47px ;}
It’s all fun and games
I’ll be the first to admit this exercise has significant issues. I’m assuming the following elements are true:
- All possible rel attribute values are accounted for in my CSS, if not there will be a blank space generated by the first rule
- You can only have one relationship defined by XFN. Unfortunately, most people are defined by multiple values, i.e. rel=”met friend colleague”. This CSS does not account for multiple values.
So, the display of your rel attributes may be a bit off in the edge cases. Keep the spirit light and nobody will say anything… I hope. Have fun with your rel attributes. They’re just sitting there waiting to be used.
View the finished rel attribute style example.
Related Information
- Microformats Wiki: Profile URI’s
- Microformat: Rel Design Pattern
- Microformat: Tags
- Microformat: No Follow
- Microformat: Bookmark
- Microformat: XFN – Friends Network
- Microformat: XEN – Enemies Network
- W3C: Link Types
- Icon Buffet – The source of most icons used in this example
Leave a Reply