transition

Creates smooth transitions between CSS property states.

Syntax

css
transition: property duration timing-function delay;

Example

css
.btn {
  transition: all 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}