Immediate
Change instantlyThe background, colour, and border switch as soon as the state changes.
Use transitions to connect an element's starting state to its hover or focus state.
The background, colour, and border switch as soon as the state changes.
Only the named properties blend over the declared duration.
transition: background-color 200ms ease, color 200ms ease;
:hover and :focus-visible supply the ending values.Transition interpolates property changes over time.
.button {
background: #0f766e;
transition: background 200ms ease, transform 200ms ease;
}
.button:hover {
background: #115e59;
transform: translateY(-2px);
}