This topic has not yet been rated - Rate this topic

:link

Sets the style of an A element when the link has not been visited recently.

[a]:link { sRules }

sRules

String that specifies one or more cascading style sheet attribute/value pairs.

The default value of the :link pseudo-class is browser-specific. The time period used to define a recent visit also varies by browser.

The :link pseudo-class is often used with :active, :hover, and :visited, the pseudo-classes that affect the other states of a link.

The following style rule uses the :link pseudo-class to set the default color property of a link in a document:

<style>
    a:link {color:#FF0000}
</style>
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.