animation: bounce 1s infinite
cubic-bezier(0.68, -0.55, 0.265, 1.55)
Animating width causes layout thrash.
Animating height causes layout thrash.
Animating padding causes layout thrash.
Animating margin causes layout thrash.
Use grid-template-rows instead.
Multiple layout properties.
Layout property mixed with OK property.
Longhand form.
animation: fadeIn with exponential ease-out
cubic-bezier(0.25, 1, 0.5, 1) — smooth deceleration
cubic-bezier(0.16, 1, 0.3, 1) — natural feel
Transform is GPU-accelerated and safe.
Opacity is GPU-accelerated and safe.
Color transitions are paint-only, no layout.
Shadow transitions are paint-only.
Too common to flag — usually paired with transform/opacity.
Multiple safe properties combined.