HTML5   发布时间:2022-04-25  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了html5 – @ font-face在子文件夹中的字体时不起作用大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
目前我正在努力将新字体嵌入到我的页面中(当前处于离线状态).我使用Font Squirrel将字体转换为所有类型,并将它们添加fontspring的@L_944_3@中.
现在我想将我的文件夹命名为子文件夹,因此我创建了一个文件夹(只有HTML文件),一个CSS文件夹和一个字体文件夹. Font-Face嵌入在CSS中并尝试从字体文件夹中到达字体,但它不起作用.当我将CSS,HTML和所有字体直接放入根文件夹时,它才起作用.为什么?我已经使用了相对路径方法(../font/thefontiwanttouse.ttf).有没有办法子文件夹我的字体和CSS仍然使用Fontface?我已经搜索过网络,但我没有找到任何东西.

CSS中的@L_944_3@:

body,button,input,SELEct,textarea { font-family: regular,sans-serif; color: #222; }

Code Fontfamily

@font-face {
font-family: 'regular';
src: url('../font/pfdindisplaypro-reg-webfont.eot?#iefix') format('embedded-opentype'),url('../font/pfdindisplaypro-reg-webfont.woff') format('woff'),url('../font/pfdindisplaypro-reg-webfont.ttf')  format('truetype'),url('../font/pfdindisplaypro-reg-webfont.svg#svgFontName') format('svg');}

问候
Terba.

解决方法

样式表需要位于字体和HTML文件间的绝对路径上:

HTML-File: domain.tld/index.html
css-File : domain.tld/assets/stylesheets/stylesheet.css
FONT-File: domain.tld/assets/stylesheets/font/pfdindisplaypro-reg-webfont.woff

然后将样式表更新为:

尝试将包含字体的文件夹放在包含css文件文件夹中!

@font-face {
font-family: 'regular';
src: url('font/pfdindisplaypro-reg-webfont.eot?#iefix') format('embedded-opentype'),url('font/pfdindisplaypro-reg-webfont.woff') format('woff'),url('font/pfdindisplaypro-reg-webfont.ttf')  format('truetype'),url('font/pfdindisplaypro-reg-webfont.svg#svgFontName') format('svg');}

大佬总结

以上是大佬教程为你收集整理的html5 – @ font-face在子文件夹中的字体时不起作用全部内容,希望文章能够帮你解决html5 – @ font-face在子文件夹中的字体时不起作用所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。