About Lesson
a : hover – इस selector को links की hover state को design करने के लिए use किया जाता है। ये वो state होती है जब link पर mouse ले जाया जाता है।
a : hover– This selector is used to design the hover state of links. This is the state when the mouse is moved on the link.
Example:
<html> <head> <title> a : hover demo</title> <style> a:hover { color:purple; } </style> </head> <body> <a href=”https://nielitexam.co.in”>AK IT SOLUTION</a> </body> </html> |