CSS :active Selector Last Updated : 29 Aug, 2024 Comments Improve Suggest changes 1 Likes Like Report The: active selector is used in styling an active link of the web page. Style display when the user clicks on the link. This selector is different from :link, :visited and: hover selectors. The main use of : active selector is on the links but it can be used on all elements.Syntax: :active{ //CSS property}Example: In this example, The CSS: active pseudo-class targets the active state of elements. It applies green background color for the link and blue background color for the paragraph when clicked. HTML <!DOCTYPE html> <html> <head> <title>Active selector</title> <style> a:active { background-color: green; } p:active { background-color: blue; } </style> </head> <body> <h3>Active for link.</h3> <a href="https://www.geeksforgeeks.org/"> Geeks for Geeks </a> <h3>Active for text.</h3> <p>Click Me!!</p> </body> </html> Output: Supported Browsers:Google Chrome 1Edge 12Firefox 1Safari 1 Opera 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