Correct
- active is only the one with a mousedown event currently in effect
For any currently visited page style (different when that page is loaded)
- you will need a client side or server side script (not just a CSS style) to determine which page you are on
Search for breadcrumb navigation scripts (they usually include a current page node)
| But doesn't active just cover it until the page actually loads? That seems to
| be the case on our intranet site anyway.
|
| "Trevor Lawrence" wrote:
|
| >
| > | > > You can do text decoration for a link hovered over, but can you do one
| > > that
| > > is for one currently being visited? This is what i have right now.
| > >
| > > a {color: #660000;}
| > > a:link {text-decoration: underline}
| > > a:visited {text-decoration: underline}
| > > a:hover {text-decoration: underline}
| >
| > Use a:active
| >
| > Examples are given in
http://www.w3schools.com/CSS/css_pseudo_classes.asp
| > a:link {color: #FF0000} /* unvisited link */
| > a:visited {color: #00FF00} /* visited link */
| > a:hover {color: #FF00FF} /* mouse over link */
| > a:active {color: #0000FF} /* selected link */
| >
| > Note that the order is important
| > --
| > Trevor Lawrence
| > Canberra
| > Microsoft MVP - FrontPage
| > MVP Web Site
http://trevorl.mvps.org
| >
| >
| >