Text: right to left (CSS)

前端 未结 6 1665
南方客
南方客 2020-11-27 22:22

Is there a CSS code that changes this text

This is it

to this one

ti si sihT
6条回答
  •  春和景丽
    2020-11-27 23:07

    Try this, IE does seem to have a bit of a hard time rendering fonts smoothly, but it works like a charm in all browsers. I have tested IE 7-9, Ff, Chrome and Safari on Win 7

    .flipText {
    display: block;
    -moz-transform: scaleX(-1); /* Gecko */
        -o-transform: scaleX(-1); /* Opera */
        -webkit-transform: scaleX(-1); /* webkit */
        transform: scaleX(-1); /* standard */
        filter: FlipH; /* IE 6/7/8 */
    -ms-filter: "FlipH";
    }
    

提交回复
热议问题