R
Rob Shepherd
I have the following html to make some invisible links on a page and associated CSS drawn
from external ref.
They are invisible but when they become "visited" they take the global a.visited
attributes and appear like a normal visited link.
How can I add visited behaviour to the invisible class?
HTML
<a class="invisible" href="http://www.google.com">google</a>
<a class="invisible" href="http://www.yahoo.co.uk">uk yahoo</a>
/HTML
CSS
a:visited{ color: blue; }
..invisible {
text-align: right;
color: #fff;
background-color: #fff;
}
\CSS
kindest regards
Rob Shepherd
from external ref.
They are invisible but when they become "visited" they take the global a.visited
attributes and appear like a normal visited link.
How can I add visited behaviour to the invisible class?
HTML
<a class="invisible" href="http://www.google.com">google</a>
<a class="invisible" href="http://www.yahoo.co.uk">uk yahoo</a>
/HTML
CSS
a:visited{ color: blue; }
..invisible {
text-align: right;
color: #fff;
background-color: #fff;
}
\CSS
kindest regards
Rob Shepherd