Home > Enterprise >  How to flip text horizontally in css? I used rotate() but it is not working
How to flip text horizontally in css? I used rotate() but it is not working

Time:12-16

HTML FILE... HTML FILE...

<div>
   <span >Turn for X</span>
</div>

the text in the info class should flip horizontally infinite times.

CodePudding user response:

-moz-transform: scale(-1, 1); -webkit-transform: scale(-1, 1);

CodePudding user response:

you can simply use

transform: scale(-1, 1);
  • Related