Is there any way to use inline styles to define a:visited link style?

Viewed 24453

So instead doing it using css:

<style type="text/css">
a:visited {
   color: red;
}
</style>

Could it be done using inline code. Something like this doesn't work:

<a href="http://google.com" style='a:visited:color:red'>Google.com</a>
6 Answers
Related