Добавление float: right;
к span
сделает это
Фрагмент стека
.box {
font-family: Arial, sans-serif;
display: block;
text-align: center;
font-weight: 900;
font-size: 72px;
width: 125px;
height: 125px;
line-height: 120px;
overflow: hidden;
}
span {
display: block;
white-space: nowrap;
float: right;
}
<div class="box">
<span>Lorem ipsum dolor sit amet</span>
</div>
Или display: flex; justify-content: flex-end;
на .box
Фрагмент стека
.box {
font-family: Arial, sans-serif;
display: flex;
justify-content: flex-end;
text-align: center;
font-weight: 900;
font-size: 72px;
width: 125px;
height: 125px;
line-height: 120px;
overflow: hidden;
}
span {
display: block;
white-space: nowrap;
}
<div class="box">
<span>Lorem ipsum dolor sit amet</span>
</div>