79181987

Date: 2024-11-12 16:40:14
Score: 3
Natty:
Report link

@Mohamad's answer is on point, but if you want smoother animation and a shorter movement, try that:

.box {
  transition: all .3s ease-in-out;
}

.box:hover {
  transform: translateY(-5px);
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Mohamad's
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Whelmer Neto