gpt4 book ai didi

javascript - 仅为附加文本设置字体大小

转载 作者:太空宇宙 更新时间:2023-11-04 12:47:24 25 4
gpt4 key购买 nike

目前一个链接有这样的描述:

<a href="#">description</a>

现在,我将在描述后附加文本:

$('a').append('&gt;')

如何仅对附加文本使用字体大小?

description>
// ^^^ setting font-size for this only
// this won't work
$('a').append('&gt;').css('font-size','20px')

出于某种原因,我不想用 span 包裹附加文本。

我不太了解正则表达式,但希望这可以用正则表达式来完成。

最佳答案

您可以尝试使用 :after 伪元素,但额外的内容将成为链接文本的一部分,而不是出现在结束 a 标记之后。

如果你关闭文本装饰,你可能会使用这个设计模式。

然后您可以使用 jQuery 添加或切换类“标记”到适当的链接。

a {
text-decoration: none;
transition: background-color 1s ease-in-out;
}
a:hover {
background-color: lightblue;
}
a.marked:after {
/* content: '>'; this also works... */
content: '\3e'; /* '3e' is the hex code for the > symbol */
font-size: 2.0em;
margin-left: 10px;
vertical-align: middle;
}
<a href="#">description</a>
<br><br>
<a class="marked" href="#">description</a>

引用:实体的十六进制代码可在以下位置找到:

http://www.fileformat.info/info/unicode/char/3e/index.htm

关于javascript - 仅为附加文本设置字体大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26402214/

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