Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Trouble with "transform" and "writing-mode" Reply To: Trouble with "transform" and "writing-mode"

#287263
alloydog
Participant

SOLVED!

I found an answer on Stackoverflow:
https://stackoverflow.com/questions/40205702/how-to-write-vertical-text-from-bottom-to-top-without-using-transform-rotate

It turns out that only “writing-mode: tb-rl;” works as it stands. If you want the text to run from bottom to top, then you need to use “transform: rotate(-180deg)” as well.

This is what I ended up with:

.PrevPage p {
writing-mode: tb-rl;
transform: rotate(-180deg);
padding: 0;
margin: 0;
}

It woks a treat now.