CSS transform-origin Property
Sets the origin point for an element's transformations
Syntax
transform-origin: <x-offset> <y-offset> <z-offset>?;Values
| Value | Description |
|---|---|
| 50% 50% | Center of the element (default) |
| top left | Top-left corner |
| center bottom | Bottom center |
| 0 0 | Top-left corner |
| 100% 100% | Bottom-right corner |
Example
.flip-card {
transform-origin: center;
transition: transform 0.6s;
}
.flip-card:hover {
transform: rotateY(180deg);
}Understanding CSS transform-origin
The CSS transform-origin property sets the origin point for an element's transformations. As part of the Transform & Animation module in CSS, it is one of the most commonly used properties for controlling the visual presentation of web pages.
You can set transform-origin to values such as 50% 50%, top left, center bottom, 0 0, among others. Each value changes how the browser renders the affected element, giving you fine-grained control over your page layout and design. Choosing the right value depends on the specific design requirements of your project.
Common use cases for the transform-origin property include responsive web design, component-based layouts, and creating visually consistent interfaces across devices. It works closely with related properties like transform, perspective-origin, rotate to achieve complex styling effects. Understanding how these properties interact helps you write cleaner, more maintainable stylesheets.
Browser support for transform-origin is excellent across all modern browsers including Chrome, Firefox, Safari, and Edge. For older browsers, consider using fallback values or progressive enhancement strategies. The property can also be set dynamically via JavaScript using element.style.transformOrigin or the CSS custom properties (variables) approach for theming.
Related Properties
transformApplies a 2D or 3D transformation to an element such as rotate, scale, skew, or translate
perspective-originSets the origin position for the perspective property
rotateAllows you to specify rotation independently from the transform property
scaleAllows you to specify scaling independently from the transform property
Explore More CSS Properties
Browse our complete reference of 251 CSS properties with syntax, examples, and tips.