-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
有关webfont的行高及其他使用问题 #7
Comments
网页可变字体的用法可以参考:https://developer.mozilla.org/zh-CN/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide 本字体只有字重可变,字重值可以填写250—900之间的任意值,其中400相当于 Regular,700相当于 Bold。 其他问题有待尝试能否复现。 |
我稍后给自己的网站加个样式,给html加class启用煮豆黑体吧。 给 至于 |
@font-face {
font-family: 'Zhudou Sans';
src: url(/images/b/ba/ZhudouSansVF.woff2) format("woff2-variations"),local('Zhudou Sans');
font-weight: 250 900;
}
html.lakeus-zhudou-sans {
--font-family: 'Zhudou Sans','Roboto',-apple-system,blinkmacsystemfont,'Segoe UI','Oxygen','Ubuntu','Cantarell','Helvetica Neue',sans-serif /* This variable applies to font-family of <body> */
}
html.lakeus-zhudou-sans {
font-weight: 400
} 注:一般的 |
because it leads huge line gap Buernia/Zhudou-Sans#7
|
写了个最小复现样例,在 Chrome 117 成功复现,除了 最小复现样例代码
|
该 PoC 在 Arch Linux 上的 Firefox nightly(120.0a1.20231015.12)、Firefox Stable(118.0.2-1)、Firefox ESR(115.3.1-1) 和 Chromium(118.0.5993.70-1) 上皆可以复现所述行为。 |
在Jetbrains产品下, zhudou 字体会导致行高异常, ui 混乱. see: Buernia/Zhudou-Sans#7
非常感谢您制作这样一款专注于标点符号的字体!我在下载时发现有woff2打包,便尝试将其用于网站:
但是这样除去VF的字重问题(我不太清楚可变字体如何使用),整个页面的行高都会变得异常高(经过Devtools发现使用的其实是电脑安装的煮豆黑体)。在CSS的
line-height
会影响绝大部分界面元素的情况下,整个页面排版会变得异常(尤其是Material icons这样行高本身就有点问题的字体,指定行高为normal后会使用煮豆黑体的行高,于是变得异常高)。我应该如何在网页环境下使用该字体呢?The text was updated successfully, but these errors were encountered: