how to stop gmail from underlining addresses in email dev code example
Example: how to stop gmail from underlining addresses in email dev
/* How to override blue links in Gmail for email development: */
<style>
u + #body a {
color: inherit;
text-decoration: none;
font-size: inherit;
font-family: inherit;
font-weight: inherit;
line-height: inherit;
}
</style>
/* Also add "id="body"" to the <body> tag. */
<body id="body">
</body>
/* If you need anything underlined, add the style inline on the element to override the override. */