Skip to content

Instantly share code, notes, and snippets.

@richerimage
Created July 6, 2014 12:06
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 richerimage/d4756659e157d71996a7 to your computer and use it in GitHub Desktop.
Save richerimage/d4756659e157d71996a7 to your computer and use it in GitHub Desktop.
A Pen by Richard Barratt.
<div class="wrap">
<ul>
<li><a href="tel:+44.121.123.4567">Telephone Link</a></li>
<li><a href="sms:+44.121.123.4567">Text Link</a></li>
<li><a href="mailto:test@example.com">Email Link</a></li>
</ul>
</div>
.wrap {background: #444; padding: 2em 1em;}
/* phone links */
a[href^="tel:"] {color: red;}
/* sms links */
a[href^="sms:"] {color: orange;}
/* email links */
a[href^="mailto:"] {color: yellow;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment