在CSS中使用@ font-face使用自定义字体时,是否可以指定字体的相对路径.说我有以下结构:
WebContent
- css
|- style01.css
|- style02.css
|- ...
- fonts
|- font01.ttf
|- font01.ttf
|- ...
- images
|- ...
- js
|- ...
- index.html
- *.html
我可以指定类似的东西:
@font-face {
font-family: 'font one';
src: url('../fonts/font01.ttf');
}
因为上面似乎没有用.
最佳答案
似乎问题是它不喜欢名称周围的单引号.
原文链接:https://www.f2er.com/css/427094.html