gpt4 book ai didi

javascript - 缩小第二个字

转载 作者:行者123 更新时间:2023-11-30 14:29:36 26 4
gpt4 key购买 nike

我想知道如何让 ° 变小,这是我尝试过的:

$(function() {
var weather = {};
weather.temperature = '24';

$(".wthr").html(weather.temperature + "°");
});
.wthr::last-word {
font-size: 50%;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<li class="clock wthr anim04c"><span></span></li>

但是它不起作用,我怎样才能使°变小?

最佳答案

您可以将 ° 放在 ::after 中并为其指定所需的字体大小:

$(".wthr").html("10");
.wthr::after {
font-size: 60%;
content: "°";
vertical-align: top;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<li class="clock wthr anim04c"><span class="temp"></span></li>

如果你并不总是需要.wthr上的度数符号,那么你也可以在.wthr上添加一个类:

$(".wthr")
.html("10")
.addClass('deg');
.deg::after {
font-size: 60%;
content: "°";
vertical-align: top;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<li class="clock wthr anim04c"><span class="temp"></span></li>

关于javascript - 缩小第二个字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51414528/

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