Skip to content

Instantly share code, notes, and snippets.

@hsquareweb
Created March 7, 2012 03:45
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 hsquareweb/1990811 to your computer and use it in GitHub Desktop.
Save hsquareweb/1990811 to your computer and use it in GitHub Desktop.
CSS: Attribute Substring Selectors
a[href$='.pdf'], a[href$='.PDF'] {
padding-left:20px;
background:transparent url(../img/pdf_icon.png) center left no-repeat;
}
a[href$='.doc'], a[href$='.rtf'], a[href$='.txt'], a[href$='.wps'] {
padding-left: 20px;
background: transparent url(../img/doc_icon.png) center left no-repeat;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment