
April 28th, 2005, 02:34 AM
|
|
|
|
Join Date: Apr 2007
Location: Bloomington, IN, USA
Posts: 25
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
CSS Anchor Psuedo-Classes
I run into this problem alot, and normally when I do I eventually just have to find a workaround. Laziness prevails. This time I can't work around it, I have to figure out why this happens.
I know if you don't put your anchor psuedo classes in Link, Visited, Hover, Active then often your hover won't work. But my problem is that I have them in that order, and my link doesn't work.
Here is a CSS example.
Code:
a:link {
color: #FFFFFF;
text-decoration: none;
}
a:visited {
color: #FFFFFF;
text-decoration: none;
}
a:hover {
color: #5FF7E7;
text-decoration: underline;
}
a:active {
color: #5FF7E7;
text-decoration: underline;
}
Here is the page itself.
http://links.ayenee.org/links/
The link, and visited don't work, but the hover and active do. Oddly, the page looks fine in IE, but it doesn't work in my perfered Opera, or in Firefox, or Mozilla 1.7.3.
How should I go about fixing this?
|