CSS Tutorial

CSS Transitions & Animations

Source: Dave Gray

Motion on the Web

CSS
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
}