:active (Flash)
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 ease-in;
}
div:active {
background-color: lightpink;
transition: none;
}
div::before {
content: "BUTTON";
}