I have a rotated text within a div. I want to align the span to the "right" (see red arrow) of the div
<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>
.rotateText{
width: 200px;
height: 300px;
writing-mode: tb-rl;
transform: rotate(-180deg);
background-color: yellow;
}
You might not need an extra container ,
flex
,writing-mode
andalign-items
should do.writing-mode:sideways-lr
missing for some browsers will require transform to reset it on the opposite side.