-1

对于任何文本和下划线,我们可以使用 line-height 和 padding-bottom。但就我而言,我使用了超链接,所以当我将鼠标悬停在超链接上时,我希望文本装饰下划线增加超链接文本和下划线之间的间距?

期待对此的一些答案。

4

1 回答 1

0

正如您在下面的代码片段中看到的,

我使用您正在寻找的方式创建了一个自定义链接,请查看并让我知道,以防您需要进一步的帮助。

.custom {
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.custom::after {
  content: '';
  display: inline-block;
  width: 100%;
  left: 0;
  height: 1px;
  position:absolute;
  background-color: rgb(0, 0, 238);
  bottom: -2px;
}
<h2>Normal Link</h2>
<a href="google.com">Hello</a>
<h2>Custom Link</h2>
<a href="google.com" class='custom'>Hello</a>

于 2021-10-24T13:15:00.013 回答