skip to Main Content

I’m developing a website using Pretendard as the default font. This font works well because it has balanced top and bottom padding. However, I need to use a different font for emphasis in certain places. The problem is that this other font has unbalanced height, particularly with excessive bottom padding.

enter image description here

How can I remove or adjust the top and bottom padding of the span.status-stop element to match the height of the surrounding text?

2

Answers


  1. Please set the margin of <span> tag:

    span.status-stop {
      margin: 0;
    }
    Login or Signup to reply.
  2. please set the line height to normal:

    span.status-stop {
      line-height: normal;
    }
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search