I solved this very simply by "text-box-trim" CSS property.
This property let us specify whether to trim the whitespace above or/and below text.
Align your text to the bottom of the line, like so:
.yourelement {
text-box-trim: trim-end;
}
Thanks to the creators of this property :))
Nillynill