CSS translateY()

StevenSwiniarski's avatar
Published Feb 27, 2022
Contribute to Docs

The translateY() function moves an element along the vertical Y-axis.

  • Front-end engineers work closely with designers to make websites beautiful, functional, and fast.
    • Includes 34 Courses
    • With Professional Certification
    • Beginner Friendly.
      115 hours
  • A full-stack engineer can get a project done from start to finish, back-end to front-end.
    • Includes 51 Courses
    • With Professional Certification
    • Beginner Friendly.
      150 hours

Syntax

transform: translateY(<value>);

The required <value> can be one of the following:

  • Length value: 100px, 1.5em
  • Percentage value: 25%, 50%

A positive value moves the element down the vertical Y-axis, while a negative value will move an element up.

Example 1

In the example below, a .box element is moved down the Y-axis by 100px:

.box {
transform: translateY(100px);
}

Example 2

In this example, the element is moved up the Y-axis by -10em, relative to the height of its direct parent element.

.box {
transform: translateY(-10em);
}

All contributors

Contribute to Docs

Learn CSS on Codecademy

  • Front-end engineers work closely with designers to make websites beautiful, functional, and fast.
    • Includes 34 Courses
    • With Professional Certification
    • Beginner Friendly.
      115 hours
  • A full-stack engineer can get a project done from start to finish, back-end to front-end.
    • Includes 51 Courses
    • With Professional Certification
    • Beginner Friendly.
      150 hours