Answers for "css active state button"

CSS
0

button active css

form :active {
  color: red;
}

form button:active {
  background: black;
}
Posted by: Guest on December-06-2020
0

active state css

/* :active – Applies on clicking the link */
a:active{
  color: green;
}
Posted by: Guest on September-11-2021

Browse Popular Code Answers by Language