Sets the style of an a element when the link has not been visited recently.
dhtml语法
HTML |
[A]:link { sRules } |
---|
Scripting | N/A |
---|
DHTML可能的值
sRules | String that specifies one or more Cascading Style Sheets (CSS) attribute/value pairs. |
Remarks
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.
microsoft® internet explorer 3.0 applies the value of the :link pseudo-class to the :visited pseudo-class.
DHTML代码范例
The following style rule uses the :link pseudo-class to set the default color attribute of a link in a document.
<STYLE>
A:link { color:#FF0000 }
</STYLE>
是否符合公共标准
This pseudo-class is defined in
CSS, Level 1 (CSS1) .
Applies To