Hover effect within a link

0

<a href="#" target="_blank" style="text-decoration: none;
    color:white;">Opciones</a>

I am making a signature of my email, which only respects the styles placed on the labels themselves, as shown above, where I give the styles within the same link, what I do not understand now is how I make the pseudoclass in it!

    
asked by Karlos Yalta 23.11.2018 в 16:23
source

1 answer

0

Something more or less like that would be?

<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>

</head>
<body>


<a href="#" style="color:#009933;"

onMouseOver="this.style.cssText='color: #cc0000'" 

onMouseOut="this.style.cssText='color: #009933'"> Enlace </a> 


<!DOCTYPE html>
</body>
</html>
    
answered by 23.11.2018 в 17:02