Active link state
When a user clicks on a link, it transitions into the active state. By default, an active link is displayed in red while remaining underlined, helping users identify which link they are interacting with.
If you want your links to reflect your brand’s unique colors or style, you can easily customize their appearance using the a:active selector within your CSS rules. This allows you to define exactly how a link should look when it is being clicked. For example, to change the color of an active link to LightSeaGreen, you would use the following code:
a:active {
color: LightSeaGreen;
}
This approach helps maintain visual consistency with your brand and enhances the user experience by providing clear feedback during interaction.

