|
Written by Administrator
|
|
Monday, 17 September 2007 02:48 |
|
Defines the properties for a link or a target. Browser/User Agent Support | 2.0+ | 1.0+ | 1.0+ | 4.0+ | 1.0+ | - IE: IE 5-6 only supports :hover on links.
| Example This example shows a set styles of anchor elements that will visually change color and text-decoration depending on state and mouse behavior: a { color: blue; text-decoration: underline; }
a:active { color: yellow; text-decoration: none; }
a:link { color: blue; text-decoration: underline; }
a:visited { color: purple; text-decoration: none; }
a:focus { color: red; text-decoration: none; }
a:hover { color: red; text-decoration: none; }
Remarks Combine different anchor styles to create visual cues for your links.
|