michael-s
2/23/2016 - 3:47 PM

Use the ::before pseudo selector to add the unicode phone character before the tel-number is displayed

Use the ::before pseudo selector to add the unicode phone character before the tel-number is displayed

/* Use the ::before pseudo selector to add the unicode phone character before the tel-number is displayed: */

a[href^="tel:"]:before {
  content: "\260e";
  margin-right: 0.5em;
}