CSS :link Selector Last Updated : 11 Jul, 2025 Comments Improve Suggest changes 1 Likes Like Report The :link is used to target the unvisited link for styling not the links which is already visited. For styling on visited use ":visited", for styling on click use ":active" and for styling move mouse on link use ":hover".Syntax::link { //property}Example: HTML <!DOCTYPE html> <html> <head> <style> a:link { background-color: limegreen; } </style> </head> <body> <h3>Unvisited links.</h3> </body> </html> Output: Supported Browsers:Google Chrome 1.0Edge 12.0Firefox 1.0Safari 1Opera 3.5 Create Quiz Comment V Vishal_Khoda Follow 1 Improve V Vishal_Khoda Follow 1 Improve Article Tags : Misc Web Technologies CSS CSS-Selectors Explore CSS Introduction 3 min read CSS Syntax 3 min read CSS Selectors 6 min read CSS Comments 2 min read CSS Colors 5 min read CSS Borders 5 min read CSS Margins 4 min read CSS Height and Width 4 min read CSS Outline 4 min read CSS Fonts 4 min read Like