Skip to content

Instantly share code, notes, and snippets.

@dandenney
Created November 30, 2016 19:41
Show Gist options
  • Save dandenney/390a23deff0a375f223a699f8919e294 to your computer and use it in GitHub Desktop.
Save dandenney/390a23deff0a375f223a699f8919e294 to your computer and use it in GitHub Desktop.
Timmmaayyyyy
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Timmmmaayyyy</title>
</head>
<style>
/* -- removebluelinks.com works for iOS -- */
a[x-apple-data-detectors] {
color: inherit !important;
text-decoration: none !important;
font-size: inherit !important;
font-family: inherit !important;
font-weight: inherit !important;
line-height: inherit !important;
}
/* -- The class trick is necessary for Airmail -- */
/* -- It can be applied to cells with text or spans -- */
.mask-link-white a {
color: #ffffff !important;
text-decoration: none !important; /* optional */
}
</style>
<body style="margin: 0; padding: 0;">
<p>
Using the class on the table cell
</p>
<!-- ====== WRAPPER ============ -->
<table bgcolor="#28a7fd" border="0" cellspacing="0" cellpadding="0" width="100%">
<!-- Text -->
<tr>
<td align="center" class="mask-link-white" style="color: #ffffff; font-family: Helvetica, Arial, sans-serif; font-size: 16px; line-height: 24px;">
Get the most out of Typing.com
</td>
</tr>
</table>
<p>
Using the class on a span
</p>
<!-- ====== WRAPPER ============ -->
<table bgcolor="#28a7fd" border="0" cellspacing="0" cellpadding="0" width="100%">
<!-- Text -->
<tr>
<td align="center" style="color: #ffffff; font-family: Helvetica, Arial, sans-serif; font-size: 16px; line-height: 24px;">
Get the most out of <span class="mask-link-white">Typing.com</span>
</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment