CSS translateY() function

The translateY() function is an inbuilt function which is used to reposition the element along the vertical axis. 

Syntax:

translateY( t )

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

Below examples illustrate the translateY() function in CSS:

Example 1: 

html




<!DOCTYPE html>
<html>
  
<head>
    <title>
      CSS translateY() function
  </title>
    <style>
        body {
            text-align: center;
        }
          
        h1 {
            color: green;
        }
          
        .translateY_image {
            transform: translateY(100px);
        }
    </style>
</head>
  
<body>
    <h1>w3wiki</h1>
    <h2>CSS translateY() function</h2>
  
    <h4>Original Image</h4>
    <img src=
"https://media.w3wiki.net/wp-content/cdn-uploads/20190710102234/download3.png" 
         alt="w3wiki logo">
    <br>
  
    <h4>Translated image</h4>
    <img class="translateY_image"
         src=
"https://media.w3wiki.net/wp-content/cdn-uploads/20190710102234/download3.png"
         alt="w3wiki logo">
</body>
  
</html>


Output:

  

Example 2: 

html




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


Output:

  

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

  • Google Chrome 1
  • Edge 12
  • Internet Explorer 9
  • Firefox 3.5
  • Safari 3.1
  • Opera 10.5


Contact Us