CSS Reference Function

translateZ() 4r1z4o

The translateZ() function is a transform function used to move an element along the z-axis in three-dimensional space. 5a5w1d

It takes a translation value tz as an argument. This value specifies the amount by which an element is to be translated.

The translation value tz is provided as a <length>. Not including a unit type will cause the number to be interpreted as a “ unit”.

Positive translation values will move the element along the positive direction of the z-axis, and negative values will move it in the opposite direction.

Examples:

transform: translateZ(300px);
transform: translateZ(-5em);
transform: translateZ(4vh);
      

The official syntax looks as follows:

transform: translate(tz);
                

For a better understanding of the transform functions, please refer to the transform entry.

Browser k5t66

The following is the table for three-dimensional CSS transformations:

CSS3 3D Transforms 733rg

Method of transforming an element in the third dimension using the `transform` property. Includes for the `perspective` property to set the perspective in z-space and the `backface-visibility` property to toggle display of the reverse side of a 3D-transformed element.

W3C Working Draft

ed from the following versions:

Desktop 3n671n

  • 36
  • 16
  • 10
  • 23
  • 9

Mobile / Tablet 4q224p

  • 9.0
  • 66
  • No
  • 66
  • 60

* denotes prefix required.

  • ed:
  • Yes
  • No
  • Partially
  • Polyfill

Stats from caniuse.com

Written by

Last updated June 11, 2020 at 9:48 pm by Mary Lou

Do you have a suggestion, question or want to contribute? Submit an issue.