Flexbox может это сделать:
Обратите внимание, что writing-mode
и transform
должны быть на дочернем , а не на родительском.
.rotateText {
width: 200px;
height: 300px;
display: flex;
background-color: yellow;
justify-content: flex-end;
}
span {
writing-mode: tb-rl;
transform: rotate(180deg);
}
<div class="rotateText">
<span>This is a rotated multiline text please display it in a correct way. This is a rotated multiline text please display it in a correct way</span>
</div>