What would prevent the HTML hyperlink from turning green when clicked on using the following HTML and CSS code?

Casey

New member
<STYLE type="text/css">
body
{
a color: blue;
a:active color: green;
}
</STYLE>

<BODY>

<A href="https://www.paypal.com/us/verified/pal=dennisclaass%40yahoo%2ecom">hyperlink</A>

</BODY>
 
try this:
<STYLE type="text/css">
body
{
a color: blue;
a:active color: blue;
}
</STYLE>

<BODY>

<A href="https://www.paypal.com/us/verified/pal=dennisclaass%40yahoo%2ecom">hyperlink</A>

</BODY>
 
Back
Top