Can you use CSS to mirror/flip text?

后端 未结 14 2284
旧时难觅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:50

    you can use 'transform' to achieve this. http://jsfiddle.net/aRcQ8/

    css:

    -moz-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    

提交回复
热议问题