a active css code example
Example 1: link active css
a:active {
background-color: #34D399;
}
Example 2: button active css
form :active {
color: red;
}
form button:active {
background: black;
}
a:active {
background-color: #34D399;
}
form :active {
color: red;
}
form button:active {
background: black;
}