Custom link in an html email

1

I'm preparing an html and I want to customize the link with the hover event, but I did not succeed.

<a href="http://www.teste.com/" target="_blank" style="color:#929292; text-decoration: none; display: block;">Acessar</a>
    
asked by anonymous 28.05.2018 / 06:11

1 answer

0

Just add the following rule in your html css:

a:hover {
    // aqui vai a customização desejada
}

Editing: There is no way to apply this inline rule, but for email html cases that all need to be in the same file you can put the css inside <style> tags inside your <body>

    
28.05.2018 / 06:38