有没有办法将字体系列应用于 HTML 符号如摄氏度的 Unicode?
Is there a way to apply font-family to HTML Unicodes symbold like Degree celsius?
我想知道是否有办法为 HTML Unicode 符号应用字体系列。我在 html 中使用摄氏度作为 ℃,并尝试将 css 中的摄氏度作为 \2103。目前度数和C有默认字体。但是,我想将字体更改为我需要的字体系列。
您可以围绕您应用 class 的字符创建一个 span
,该字符具有根据所需字体的 font-family
定义。
p {
font-size: 36px;
font-family: Arial, Helvetica, sans-serif;
}
.x {
font-family: Georgia, Times, serif;
font-weight: bold;
color: blue;
}
<p>The temperature is 28°C right now.</p>
<p>The temperature is 28<span class="x">°</span>C right now.</p>
我想知道是否有办法为 HTML Unicode 符号应用字体系列。我在 html 中使用摄氏度作为 ℃,并尝试将 css 中的摄氏度作为 \2103。目前度数和C有默认字体。但是,我想将字体更改为我需要的字体系列。
您可以围绕您应用 class 的字符创建一个 span
,该字符具有根据所需字体的 font-family
定义。
p {
font-size: 36px;
font-family: Arial, Helvetica, sans-serif;
}
.x {
font-family: Georgia, Times, serif;
font-weight: bold;
color: blue;
}
<p>The temperature is 28°C right now.</p>
<p>The temperature is 28<span class="x">°</span>C right now.</p>