translateY() function
Specifies a translation by a given amount in the y-direction.
![]() ![]() |
Syntax
translateY
(
<translation-value>
)
Parameters
- translation-value
-
A translation value.
Standards information
- CSS Transforms Module, Level 3, Section 13.1
Examples
The following code snippet is an example of the translateY function in use. When applied to a square blue div element, it has the effect illustrated in the image. (The light-blue square indicates the original position of the transformed element.)
div {
transform: translateY(40px);
}

Requirements
See also
Show:

