I have this piece of code:
.title span {
font-family: 'Gill Sans MT Pro Condensed', 'Gill Sans MT', 'Gill Sans';
}
.title .big {
font-size: 250px;
}
.title .small {
font-size: 60px;
}
<div class="title flex">
<span class="big">1</span>
<span class="small">st</span>
</div>
How to remove the massive white space around the first span?
This is what I want to accomplish: Image1
But this is what I have due to that massive white space: Image2
JSFiddle: https://jsfiddle.net/vmn3bz0k/