CSS decrease space between text and border

后端 未结 5 1559
再見小時候
再見小時候 2021-02-05 19:35

When hovering a link I want it to get an underline. The underline should be 2px strong and 4px below the text.

With

text-decoration: underline

5条回答
  •  独厮守ぢ
    2021-02-05 19:51

    You can use line-height for decrease distance.

    .underline {
      display: inline-block;
      line-height: 0.9; // the distance
      border-bottom: 1px solid;
    }
    

    Drawback of this method -- because we use block display it works only for single line of the text.

提交回复
热议问题