Can you use CSS to mirror/flip text?

后端 未结 14 2340
旧时难觅i
旧时难觅i 2020-11-28 01:27

Is it possible to use CSS/CSS3 to mirror text?

Specifically, I have this scissors char “✂” () that I\'d like to display pointing left a

14条回答
  •  时光说笑
    2020-11-28 01:58

    this is what worked for me for >

    display:inline-block;
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=4);
    

    just need display:inline-block or block to rotate. So basically first answer is good. But -180 didn't worked.

提交回复
热议问题