HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

transform-style

Description

The transform-style property for CSS specifies the stacking context for the element.

Syntax

CSS

transform-style: value;

JS

object.style.transformStyle = "value";

Values

<'transform-style'> = flat | preserve-3d
flat

No stacking context.

preserve-3d

Establishes a stacking context and a containing block for all descendants.

Initial

flat

Examples

1 · flat

2 · preserve-3d

3 · JS