--- title: transform-style slug: Web/CSS/transform-style translation_of: Web/CSS/transform-style ---
La propiedad transform-style
CSS establece si el elemento hijo esta posicionado en el espacio 3D (preserve-3d) o esta integrado(flat) en el plano del elemento.
Si esta integrado (flat), el elemento hijo no existirá por sí solo en el espacio 3D.
Como esta propiedad no se hereda, debe establecerse para todos los nodos internos descendientes (hijos) del elemento.
/* Keyword values */ transform-style: flat; transform-style: preserve-3d; /* Global values */ transform-style: inherit; transform-style: initial; transform-style: unset;
flat
preserve-3d
{{csssyntax}}
Specification | Status | Comment |
---|---|---|
{{SpecName('CSS Transforms 2', '#transform-style-property', 'transform-style')}} | {{Spec2('CSS Transforms 2')}} | Initial definition. |
{{cssinfo}}
{{Compat("css.properties.transform-style")}}