gpt4 book ai didi

html - 如何在css中使用繁体中文字体?

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

我想在我的网站上显示一些繁体中文文本,即

HTML:

<div id = "shareText">好</div>

CSS:

#shareText
{
position: absolute;
right: 125px;
padding: 20px 0 0 0;
color: #a9a4a4;
font-size: 25px;
}

但是我得到的输出字符是:好。我厌倦了像这样更改字体:

#shareText
{
position: absolute;
right: 125px;
padding: 20px 0 0 0;
color: #a9a4a4;
font-size: 25px;
font-family: "微軟正黑體", "Microsoft JhengHei", Tahoma , Verdana , Arial , sans-serif;
}

但 Angular 色保持不变。我究竟做错了什么?它与html文件的编码有关吗?我尝试从 unicode 8 更改为 16,出现了字符,但我丢失了所有格式,我所有的 div 都在错误的位置..

最佳答案

这对我来说正确显示。注意 <meta charset="utf-8" />标记在头上。

<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8" />
<title>Chinese</title>

<style>
#shareText{

position: absolute;
right:125px;
padding: 20px 0 0 0;
color: #a9a4a4;
font-size: 25px;
}
</style>
</head>
<body>
<div id = "shareText">好</div>
</body>
</html>

关于html - 如何在css中使用繁体中文字体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30001627/

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