• When posting, please be aware that artistic nudity is still nudity and not allowed under RpNation rules. Please edit your pictures accordingly!

    Remember to credit artists when using work not your own.

Help Mirroring Text

Lekiel

Two Thousand Club
Supporter
Heys! Just wondering is there any code for inverting texts? Basically flipping them on a Y-axis. I tried doing a search of the forums but found nothing. Any help would be appreciated ^^
 
i think you should just be able to use transform: rotateY(180deg); which will flip the div so that the text would effectively be backwards. using transform: scaleX(-1); also has the same effect.

[div style="background-color: lightblue; width: 100px;"]text here[/div]
[div style="background-color: lightblue; width: 100px; transform: rotateY(180deg);"]text here[/div]
 
i think you should just be able to use transform: rotateY(180deg); which will flip the div so that the text would effectively be backwards. using transform: scaleX(-1); also has the same effect.

[div style="background-color: lightblue; width: 100px;"]text here[/div]
[div style="background-color: lightblue; width: 100px; transform: rotateY(180deg);"]text here[/div]

Well that's exactly what I wanted! <3

except that I'd have to figure out the div bit now T.T I was hoping there was something simpler like [reverse]me[/reverse] or [rt][/rtl] or something :P THANKS THO!
 
Well that's exactly what I wanted! <3

except that I'd have to figure out the div bit now T.T I was hoping there was something simpler like [reverse]me[/reverse] or [rt][/rtl] or something :P THANKS THO!

ah yeah, nothing like that (that i'm aware of), unfortunately. let me know if you need help with the divs~
 

Users who are viewing this thread

Back
Top