Skip to content

Instantly share code, notes, and snippets.

@siriokun
Forked from hatefulcrawdad/href-css-styling.css
Created May 10, 2014 00:06
Show Gist options
  • Save siriokun/d9e62e63d71b448c56ab to your computer and use it in GitHub Desktop.
Save siriokun/d9e62e63d71b448c56ab to your computer and use it in GitHub Desktop.
a[href^="http://"] {
/* fully valid URL, likely external link */
}
a[href="http://google.com"] {
/* link to specific website */
}
a[href^="/"], a[href^=".."] {
/* internal relative link */
}
a[href^="mailto:"] {
/* email link */
}
a[href$=".pdf"] {
/* PDF file */
}
a[href$=".doc"] {
/* Microsoft Word document */
}
a[href$=".mp3"] {
/* Music file */
}
a[href$=".zip"] {
/* Archive file */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment