79834349

Date: 2025-12-01 04:49:10
Score: 1
Natty:
Report link

Remove the space between the class name and the pseudo-class:

/* CHANGE THIS */
.btn :hover { ... }

/* TO THIS */
.btn:hover {
  background-color: red;
  font-size: 19px;
  color: white;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: yym xtxd