gpt4 book ai didi

less - 我们如何在 Less 中使用 @font-face

转载 作者:行者123 更新时间:2023-12-04 19:31:33 36 4
gpt4 key购买 nike

Less ,似乎几乎不可能使用 @font-face选择器。当我尝试使用时,Less 会出错

font-family: my_font

这是我尝试使用它的方法:

@font-face {
font-family: my_font;
src: url('http://contest-bg.net/lg.ttf');
}
p {
font-family: my_font, "Lucida Grande", sans-serif;
}

使用 ~"..." 在 Less 中有简单的转义但无法提出工作代码。
有人成功使用过吗?

最佳答案

您是否尝试将字体系列名称放在单引号中?以下对我来说效果很好。

    @font-face {
font-family: 'cblockbold';
src: url('assets/fonts/creabbb_-webfont.eot');
src: url('assets/fonts/creabbb_-webfont.eot?#iefix') format('embedded-opentype'),
url('assets/fonts/creabbb_-webfont.woff') format('woff'),
url('assets/fonts/creabbb_-webfont.ttf') format('truetype'),
url('assets/fonts/creabbb_-webfont.svg#CreativeBlockBBBold') format('svg');
font-weight: normal;
font-style: normal;

}

要将字体用作 mixin,请尝试:
.ffbasic() {
font-family: ff-basic-gothic-web-pro-1,ff-basic-gothic-web-pro-2, AppleGothic, "helvetica neue", Arial, sans-serif;
}

然后在样式声明中:
.your-class {
font-size: 14px;
.ffbasic();
}

关于less - 我们如何在 Less 中使用 @font-face,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8338241/

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