Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Role of CSS :link Selector
Use the CSS :link selector to style all unvisited links. You can try to run the following code to implement the :link selector −
Example
<!DOCTYPE html>
<html>
<head>
<style>
a:link {
background-color: orange;
}
</style>
</head>
<body>
<a href="https://www.example.com">Demo Website</a>https://www.example.com/
</body>
</html> Advertisements
