Skip to content

Instantly share code, notes, and snippets.

@nathansmith
Created December 14, 2011 15:26
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nathansmith/1477017 to your computer and use it in GitHub Desktop.
Save nathansmith/1477017 to your computer and use it in GitHub Desktop.
Terse Font Icons
a[data-icon]:before,
span[data-icon]:before {
font-family: 'Icon Font Here';
content: attr(data-icon);
}
/*
This would also work, but other web developers might
yell at you about "performance" which may/not matter:
*/
*[data-icon]:before {
font-family: 'Icon Font Here';
content: attr(data-icon);
}
<!-- Assuming "+" is your font's Add icon -->
<a data-icon="+" href="...">
Add
</a>
<!-- Assuming "D" is your font's Delete icon -->
<span data-icon="D">
Delete
</span>
@ahmedelgabri
Copy link

Why not just use this without the "*"?

[data-icon]:before {
   font-family: 'Icon Font Here';
   content: attr(data-icon);
}

@nathansmith
Copy link
Author

If you want to save one byte by not having it in the stylesheet, go for it.

As far as browsers are concerned, it probably wouldn't matter either way.

I just had the star selector there for proper code highlighting.

Neither TextMate, nor Sublime Text 2, acknowledge attribute selectors without a preceding tag (or *).


TextMate screenshot:
http://cl.ly/1f333U2G3d2O3U0X2E2p

Sublime Text 2 screenshot:
http://cl.ly/1V3G1f3W132h0r3m0R0c

@ahmedelgabri
Copy link

Since browsers parse CSS selectors from right to left, I understand that it won't make a huge difference. Cause in both cases the browser will look for the attribute in all elements anyway.

I know about the highlight issue. I just thought you might have some other reason other than saving bytes or performance, that's why I asked.

@nathansmith
Copy link
Author

Nope, no good reason, really. Just a cut-and-paste from my text editor. :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment