CSS/Funktionen/translate3d()
Aus SELFHTML-Wiki
< CSS | Funktionen
Die translate3d()-Funktion positioniert ein Element im dreidimensionalen Raum. Ihr Ergebnis ist ein Datentyp <Transformationsfunktion>.
Parameter |
|
---|---|
anwendbar auf | * HTML-Blockelemente, mit Ausnahme von nicht ersetzten Inline-Elementen
|
Browsersupport | caniuse: mdn-css_types_transform-function_translate |
Beispiel
.moved {
/* Equivalent to perspective(500px) translateX(10px) */
transform: perspective(500px) translate3d(10px, 0, 0px);
background-color: pink;
}
Weblinks
- CSSWG: The Transform Functions CSS Transforms Module Level 2
- 2D Transform Functions CSS Transforms Module Level 1
- MDN: translate3d()