I need:
I have:
So, "exchequer" word was wrapped, however it left pretty wide space in spite of orange div is inline-block. CSS:
.BlockContainer{
background: blue;
width: 400px;
}
.InlineBlock {
display: inline-block;
background: teal;
font-size: 18px;
line-height: 1.2;
font-weight: 700;
text-transform: uppercase;
color: #f5511e;
padding: 2px 4px;
}
<div class="BlockContainer">
<div class="InlineBlock">
Dumpy kibitzer jingles as exchequer overflows.
</div>
</div>