:active (background-color)

by Sasabee

HTML

<div></div>

CSS

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  height: 100vh;
}

div {
  cursor: pointer;
  background-color: #f00;
  width: 300px;
  height: 100px;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1s background-color;
}

div:active {
  background-color: hotpink;
}

div::before {
  content: "BUTTON";
}