- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Usage of :active pseudo-class in CSS
The :active pseudo-class is used to add special style to an active element. Possible values could be any color name in any valid format.
Example
<html> <head> <style> a:active { color: #FF00CC; } </style> </head> <body> <a href = "">Click This Link</a> </body> </html>
Advertisements