About

Geometry - Transformation in CSS

Translate

With negative length

note that in CSS, you can also translate with margin

Example:

.box {
   margin-top: -200px !important
}

With the transform property

transform: translate(100px, 200px);