Skip to content

Instantly share code, notes, and snippets.

@jrolfs
Created November 29, 2012 02:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jrolfs/4166365 to your computer and use it in GitHub Desktop.
Save jrolfs/4166365 to your computer and use it in GitHub Desktop.
Responsive Abbreviation
nav > li > a:after {
content: attr(label);
}
@media (min-width: @navbarCollapseWidth) and (max-width: 1160px) {
nav > li > a:after {
content: attr(abbr-label);
}
}
<nav>
<ul>
<li><a label="Tag Recomendations" abbr-label="Tags"></a></li>
</ul>
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment