PDA

View Full Version : rollovers and css


axcxe
05-06-2003, 05:38 AM
I would like the css rollover color on my page to work after the link has been visited. Can anyone help I would appreciate it.
Garrett Betts

HairyTeeth
05-06-2003, 05:52 AM
use pseudo-classes:

---
a:link{
color:blue;
background-color:#FFFFFF;
}
a:active {
color:red;
background-color:#FFFFFF;
}
a:visited {
color:fuschia;
background-color:#FFFFFF;
}
a:hover {
color:blue;
background-color:yellow;
}

---
Hover has the same effect as a mouseover.

axcxe
05-06-2003, 06:09 AM
Thanks a million, -garrett