Prev Demo
CSS3
>
Link Selector
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <style> a:link { background-color: pink; } </style> <a href="http://www.techfunda.com" title="TechFunda.com">TechFunda.com</a> | <a href="http://www.dotnetfunda.com" title="DotNetFunda.com">DotNetFunda.com</a> <br/> <p>The Link slector gives style to the unvisited links on the webpage.</p> </body> </html>
Note: We DO NOT save your trial code in our database.
Output