Home › Forums › CSS › Trouble with "transform" and "writing-mode" › Reply To: Trouble with "transform" and "writing-mode"
May 2, 2019 at 6:09 am
#287263
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.