How to get the border-bottom closer to the text?

前端 未结 4 1592
轻奢々
轻奢々 2021-01-06 16:59

I want to use a border-bottom line for links (not text-decoration underline). But I need to get the line closer to the text. Negative padding isn\'t possib

4条回答
  •  青春惊慌失措
    2021-01-06 17:14

    If you set the links to display:inline-block;, you will be able to set a smaller line-height (smaller than 1) and move the bottom border closer to the text :

    a {
      color: #245fc1;
      display: inline-block;
      line-height: 0.7em;
      position: relative;
      border-bottom: 1px solid #245fc1;
      padding-bottom: 0px;
      text-decoration: none;
    }
    I want the underline to be closer to the text
    because if I write in second line the bottom line from above is too close.
    using text-decoration: underline is not an option for me!

提交回复
热议问题