gpt4 book ai didi

html - @font-family,奇怪的字体名称 - 我可以重命名吗?

转载 作者:太空宇宙 更新时间:2023-11-03 23:43:46 25 4
gpt4 key购买 nike

例如,我使用的是 04B_19__ 字体,它肯定是一个奇怪的名字,如果可能的话我想重命名它。以下是我当前的代码如何使用@font-family 来实现它:

@font-face {
font-family: '04B_19__';
src: url('<%= font_path('04b_19__-webfont.eot') %>');
src: url('<%= font_path('04b_19__-webfont.eot') %>t') format('embedded-opentype'),
url('<%= font_path('04b_19__-webfont.woff') %>') format('woff'),
url('<%= font_path('04b_19__-webfont.ttf') %>') format('truetype'),
url('<%= font_path('04b_19__-webfont.svg#04B_19__') %>') format('svg');
}

将字体重命名为更通用的名称的最佳方式是什么,例如:“boxy-font”。

最佳答案

font-family 只是您分配给该字体文件集合的名称。

你可以把它改成:

@font-face {
font-family: 'boxy-font';
src: url('<%= font_path('04b_19__-webfont.eot') %>');
src: url('<%= font_path('04b_19__-webfont.eot') %>t') format('embedded-opentype'),
url('<%= font_path('04b_19__-webfont.woff') %>') format('woff'),
url('<%= font_path('04b_19__-webfont.ttf') %>') format('truetype'),
url('<%= font_path('04b_19__-webfont.svg#04B_19__') %>') format('svg');
}

一切都会正常进行。

关于html - @font-family,奇怪的字体名称 - 我可以重命名吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22098357/

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