CSS visited Selector (:visited)
What is CSS :visited Selector?
CSS :visited selector matches all element whose href link already visited.
Syntax
General syntax of CSS :visited selector,
:visited {
property: value;
property: value;
...
}
a:visited {
property: value;
property: value;
...
}
Example
Match all element whose href link already visited.
<!DOCTYPE html>
<html>
<head>
<title>CSS :visited Selector</title>
<style type="text/css">
a:visited {
color: red;
}
</style>
</head>
<body>
<a href="#">First</a><br />
<a href="#">Second</a><br />
<a href="#">Third</a><br />
</body>
</html>
Browser Compatibility
- Google Chrome 1+
- Mozilla Firefox 1+
- Internet Explorer 7+
- Opera 9.2+
- Safari 1.3+
Note: Here details of browser compatibility with version number may be this is bug and not supported. But recommended to always use latest Web browser.