I've got a TreeView with some nodes.
CSS for node:
a:link {
color:#333333;
text-decoration:none;
}
CSS for visited node:
a:visited {
color:#333333;
text-decoration:none;
}
CSS for selected active mode:
a:active {
color:#222222;
}
But it doesn't work for the active element.
Why might that happen?