gpt4 book ai didi

html - 当链接文本跨越多行时,最小化 链接行之间的空间

转载 作者:太空宇宙 更新时间:2023-11-03 22:22:30 25 4
gpt4 key购买 nike

最佳答案

line-height 不会直接影响带有 display:inline 的元素,例如带有 span 和 anchor 链接的默认值。

The line-height CSS property sets the amount of space used for lines, such as in text. On block-level elements, it specifies the minimum height of line boxes within the element.

MDN

选项 1

line-height 应用于 div

div {
width: 150px;
line-height: 9px;
margin: 1em auto;
}

span {
background: pink;
font-size: 9px;
}
<div><span>
<a target="_blank" href="https://*********-45937924">
World's longest sea crossing: ******** ****** bridge opens</a>
</span></div>

选项2

将跨度设置为display:inline-block

div {
width: 150px;
margin: 1em auto;
}

span {
background: pink;
font-size: 9px;
display: inline-block;
line-height: 9px;
}
<div><span>
<a target="_blank" href="https://*********-45937924">
World's longest sea crossing: ******** ****** bridge opens</a>
</span></div>

关于html - 当链接文本跨越多行时,最小化 <a> 链接行之间的空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52946532/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com