CSS Transform — a practical guide to CSS transform with clear examples you can reuse in real projects.
CSS Tutorial Series (73/109). Prefer one article? Read the complete CSS tutorial.
Short description
Transforms don’t reflow layout the same way top/left changes do — great for motion.
Transform
.card:hover {
transform: translateY(-4px) scale(1.01);
}