I wish to get something like that:
I have done many things, like changing Padding or line-height or even margin does nothing
"ROCKY" and "IV" are not on differents base lines...
Is it impossible to do ?
[edit] If it is possible to do a similar thing, without using an HTML table, I am a taker, even if it will force me to change a lot of things on my interface.
table {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
text-align: center;
background: #FFA500;
border: 1px solid #999;
padding: 10px;
box-shadow: 0 0 5px 3px #ccc;
}
thead {
font-size: 40px;
height: 100px;
}
thead td {
white-space: nowrap;
padding: 20px 10px;
}
span {
font-size: 80px;
font-weight: bold;
padding-top: 40px
}
<table>
<thead>
<tr>
<td>
ROCKY <span>IV</span>
</td>
</tr>
</thead>
</table>