gpt4 book ai didi

html - 如何在链接中添加上标

转载 作者:搜寻专家 更新时间:2023-10-31 08:10:11 28 4
gpt4 key购买 nike

.project-link {
font-family:Arial;
display:inline-block;
color:#FFF;
font-size:5vw;
white-space:nowrap;
text-decoration:underline;
margin-right: 3%;
line-height:120%;
}
body {
background-color: black;
}
<a class="project-link" id="one" href="#modal1">Maru Speaker Design <sup> (1) </sup> </a>
<

我试图让 (1) 成为上标。

编辑 https://jsfiddle.net/v1jn1nus/

添加了 Arial 字体的图片。

我就是不明白。它也适用于 fiddle ......

enter image description here

enter image description here

最佳答案

那是 vertical-align:super; 所以请检查您的样式是否没有在该元素上重置 vertical-align。

检查这个:

.project-link {
font-family:Arial;
display:inline-block;
color:#FFF;
font-size:5vw;
white-space:nowrap;
text-decoration:underline;
margin-right: 3%;
line-height:120%;
}

.project-link > span { vertical-align:super; }

body {
background-color: black;
}
<a class="project-link" id="one" href="#modal1">Maru Speaker Design <span> (1) </span> </a>
<

关于html - 如何在链接中添加上标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31550819/

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