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>
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>
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>