如何最后加载@font-face

发布于 2024-12-01 18:14:44 字数 178 浏览 2 评论 0原文

我遇到一些问题,加载的字体会使我的 div 高度变形。是否有解决方案可以最后加载它,以便 div 根据加载的字体具有正确的高度?

编辑

是的,div 的高度与行高相同。通常,它会与默认的 Web 字体(如 arial)垂直对齐。但对于一些@font-face,这是行不通的。

I have some problem with font-face that are loaded are deform my div height. Is there a solution to load it last so the div would have the correct height depending of the font loaded?

EDIT

Yes the height of the div is the same as the line-height. Normaly it would be vertical-aligned with a default web font like arial. But with some @font-face, that doesn't work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

过期情话 2024-12-08 18:14:44

如果您想最后加载字体,可以在页面加载后附加标签或使用 jQuery 的 CSS 规则。

$(document).ready(function(){

 $('<link rel="stylesheet" href="myfile.css" type="text/css" />').appendTo($('head'));

});

If you want to load the font-face last, you can append the tag, or CSS rules using jQuery after the page has loaded.

$(document).ready(function(){

 $('<link rel="stylesheet" href="myfile.css" type="text/css" />').appendTo($('head'));

});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文