CSS perspective-origin Property Reference
The CSS perspective-origin property is a standard property in CSS Transforms. Review its formal syntax, computed behavior, and practical declarations.
Updated 2026-08-12
perspective-origin overview
The CSS perspective-origin property is a standard property in CSS Transforms. Review its formal syntax, computed behavior, and practical declarations.
The property is not inherited by default. Use an explicit global keyword when inheritance is intended.
Syntax and formal definition
| Field | Value |
|---|---|
| Formal syntax | <position> |
| Initial value | 50% 50% |
| Applies to | transformableElements |
| Inherited | No |
| Percentages | referToSizeOfBoundingBox |
| Computed value | forLengthAbsoluteValueOtherwisePercentage |
| Animation type | simpleListOfLpc |
| Media | visual |
| Specification group | CSS Transforms |
| Status | Standard |
Practical examples
These declarations demonstrate valid ways to set perspective-origin. The initial and inherit global keywords remain available even when a property-specific value is preferable.
CSS
.reset-example {
perspective-origin: initial;
}
.inherit-example {
perspective-origin: inherit;
}
@supports (perspective-origin: initial) {
.supported {
perspective-origin: initial;
}
}