CSS translateX() Function

The translateX() function là một hàm dựng sẵn dùng để định vị lại phần tử dọc theo trục ngang.

Syntax:

translateX( t )

Parameters: Hàm này chấp nhận một tham số t chứa độ dài dịch chuyển tương ứng với trục x. Các ví dụ minh họa hàm translateX() trong CSS:

Example 1:

html
<!DOCTYPE html>
<html>

<head>
    <title>
      CSS translateX() function
  </title>
    <style>
        body {
            text-align: center;
        }
        
        h1 {
            color: green;
        }
        
        .translateX_image {
            transform: translateX(100px);
        }
    </style>
</head>

<body>
    <h1>GeeksforGeeks</h1>
    <h2>CSS translateX() function</h2>

    <h4>Original Image</h4>
    <img src=
"https://media.geeksforgeeks.org/wp-content/cdn-uploads/20190710102234/download3.png"
         alt="GeeksforGeeks logo">
    <br>

    <h4>Translated image</h4>
    <img class="translateX_image" 
         src=
"https://media.geeksforgeeks.org/wp-content/cdn-uploads/20190710102234/download3.png"
         alt="GeeksforGeeks logo">
</body>

</html>

Output:

 css-translatex-function 

Example 2:

html
<!DOCTYPE html>
<html>

<head>
    <title>
      CSS translateX() function
  </title>
    <style>
        body {
            text-align: center;
        }
        
        h1 {
            color: green;
        }
        
        .GFG {
            font-size: 35px;
            font-weight: bold;
            color: green;
        }
        
        .geeks {
            transform: translateX(100px);
        }
    </style>
</head>

<body>
    <h1>GeeksforGeeks</h1>
    <h2>
      CSS translateX() 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:

 css-translatex-function 

Supported Browsers: Các trình duyệt được hỗ trợ bởi translateX() function được liệt kê dưới đây:

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

Last Updated : 21/07/2025