Edit This Code:
<!DOCTYPE html>
<html>
<head>
<style>
a:active {
    background-color: yellow;
}

</style>
</head>
<body>

<a href="../index.html">w3schools.com</a>
<a href="http://www.wikipedia.org">wikipedia.org</a>

<p><b>Note:</b> The :active selector styles the active link.</p>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy