Bonjour,

je mets en place une rotation de texte en CSS.

La rotation fonctionne pour tous les navigateurs, par contre le texte est complètement pixélisé.

Voici le code :

Code css : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
#rotate { 
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.9, M12=0.08, M21=-0.08, M22=0.9,sizingMethod='auto expand')"; /* IE6-8 */ 
-webkit-transform:rotate(355deg); /* Chrome & Safari */ 
-moz-transform:rotate(355deg); /* Firefox */ 
-o-transform:rotate(355deg); /* Opera */ 
-ms-transform:rotate(355deg); /* IE9+ */ 
-webkit-font-smoothing: antialiased; 
-webkit-backface-visibility: hidden; 
}


Merci de vos réponse