Webkit

  • Target Webkit Clients:

    Webkit's support is best support

    @media screen and (-webkit-min-device-pixel-ratio:0) { }
    

    -courtesy of Kevin Mandeville

  • Remove autolink styling in iOS:

    Fix automatic styling of phone numbers, etc.

    Use a span:

    .appleLinksBlack a { text-decoration:none !important; }
    .appleLinksBlack a { color:#000000 !important; }
    
    <span class="appleLinksBlack">866-787-7030</span>
    

    Add additional classes such as .appleLinksWhite a, .appleLinksPink a when appropriate

    -courtesy of Justine Jordan