incliner une image css

Solutions on MaxInterview for incliner une image css by the best coders in the world

showing results for - "incliner une image css"
Antonio
05 Oct 2018
1transform: rotate(45deg); /* Équivalent à rotateZ(45deg) */
2
3/* Valeurs d'angle */
4/* Type <angle>    */
5image-orientation: 0deg;
6image-orientation: 6.4deg;     /* Arrondie à 0deg */
7image-orientation: -90deg;     /* Équivalent à 270deg, la
8                                  valeur calculée normalisée */
9
10/* Valeurs avec un mot-clé */
11image-orientation: from-image; /* Utilise les données EXIF
12                                  de l'image */
13image-orientation: flip;       /* Pas de rotation mais un
14                                  retournement horizontal */
15
16/* Valeurs avec deux arguments */
17image-orientation: 90deg flip; /* Rotation de 90deg, puis
18                                  retournement horizontal */
19
20/* Valeurs globales */
21image-orientation: inherit;
22image-orientation: initial;
23image-orientation: unset;