When it comes to customizing the color of a link on hover, CSS makes it simple with code like this:
.myId:hover{
color:green;
}
But what if you're using inline styles? Is there a way to achieve the same effect without just plain HTML and CSS?
<a style="*add your own special markup here to change color on hover*" href="somewhere.html">text</a>
Or is changing the hover color only achievable through the traditional CSS method (without any javascript)?