Open In App

CSS translateZ() function

Last Updated : 07 Jun, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

The translateZ() function is an inbuilt function which is used to reposition the element along the z-axis in 3D space. 

Syntax:

translateZ( t )

Parameters: This function accepts single parameter t which holds the length of translation corresponding to z-axis. 

Below examples illustrate the translateZ() function in CSS: 

Example 1: 

html




<!DOCTYPE html>
<html>
  
<head>
    <title>
      CSS translateZ() function
  </title>
    <style>
        body {
            text-align: center;
        }
          
        h1 {
            color: green;
        }
          
        .translateZ_image {
            transform: perspective(200px) translateZ(100px);
        }
    </style>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
    <h2>CSS translateZ() function</h2>
  
    <h4>Original Image</h4>
    <img src=
         alt="GeeksforGeeks logo">
    <br>
  
    <h4>Translated image</h4>
    <img class="translateZ_image" 
         src=
         alt="GeeksforGeeks logo">
</body>
  
</html>


Output:

  

Example 2: 

html




<!DOCTYPE html>
<html>
  
<head>
    <title>
      CSS translateZ() function
  </title>
    <style>
        body {
            text-align: center;
        }
          
        h1 {
            color: green;
        }
          
        .GFG {
            font-size: 35px;
            font-weight: bold;
            color: green;
        }
          
        .geeks {
            transform: perspective(
              200px) translateZ(100px);
        }
    </style>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
    <h2>CSS translateZ() function</h2>
  
    <h4>Original Element</h4>
    <div class="GFG">
      Welcome to GeeksforGeeks
  </div>
  
    <h4>Translated Element</h4>
    <div class="GFG geeks">
      Welcome to GeeksforGeeks
  </div>
</body>
  
</html>


Output:

  

Supported Browsers: The browsers supported by translateZ() function are listed below:

  • Google Chrome 12 and above
  • Edge 12 and above
  • Internet Explorer 10 and above
  • Firefox 10 and above
  • Safari 4 and above
  • Opera 15 and above


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads