All effects appear after mouse click, on over it. Pseudo class Such as- :hover, :active


<!-- All effects appear after mouse click,
     on over it. Pseudo class Such as- :hover, :active -->
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Pseudo Class Selector</title>
    <style>
        a:hover {
            background-color: yellowgreen;
        }

        a:active {
            background-color: rgb(241, 112, 37);
        }
    </style>
</head>
<body>
    <a href="https://globalinstitute.co.in/">Global Computers</a>
</body>
</html>

Pseudo Class Sel Image

[social_share_button themes='theme1']

Leave a Comment