I only want my text to be displayed with a 50px width and right align.
Sounded obvious to me to code it this way:
<div style="text-align:right;width:50px;">
Myyyyyyyyyyyyy Teeeeeeeeeeeeeeeeeeeeeeext
</div>
The 50px width applies but its space seems to be reserved on the left instead of on the right.
I tried to include this code into another div:
<div style="text-align:center;">
<div style="text-align:right;width:50px;">
Myyyyyyyyyyyyy Teeeeeeeeeeeeeeeeeeeeeeext
</div>
</div>
Makes no difference. How am I suopposed to do that?