I am trying to transform text in a div
using onload
window event.
I know that transform: rotate(360deg) scaleX(-1);
makes th
Wrap each character in a span (or similar inline tag) and apply the transform to the span. That will visually keep the characters together as a single word, but will allow you to work with the individual characters. Obviously this doesn't scale very well, but as long as you are not trying apply this effect to entire paragraphs, it should do what you're describing.