Ejemplo: eliminar el formato de subrayado de la dirección de gmail
Gmail will/can auto-detect and underline the address copy in emails.
To remove the underline, wrap the copy in a span and add a class.
!!!Using in-line styles of the same values will not work for gmail!!!
<span class="contact-info-no-blue">1234 Main St.</span>
<style>
.contact-info-no-blue {
color: inherit !important;
text-decoration: none !important;
}
</style>
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)