有没有办法只通过CSS修改汉字(不影响罗马字符)?
我注意到我的网站上的汉字往往比罗马字符小一些。
我想知道是否有一种方法可以通过 CSS 修改它们而不触及罗马字符。
例如,仅将字体大小分配给中文字符。
I noticed that Chinese characters tend to be a bit smaller in my website than Roman characters.
I would like to know if there's a way of modifying them through CSS without touching Roman characters.
For instance, assigning font-size to only Chinese characters.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您基本上有两个选择:
lang="zh"
的 HTML 元素中。然后您可以使用:lang(zh)
选择它们并应用更大的字体大小。@font-face
加载其指标与您使用的罗马字体更接近的中文字体。You have basically two options:
lang="zh"
. Then you can select them with:lang(zh)
and apply a larger font-size.@font-face
to load a Chinese font whose metrics more closely match the Roman font you are using.