css 如何让我从www.example.com获得的字体dafont.com在所有浏览器中工作?

kg7wmglp  于 2023-04-23  发布在  其他
关注(0)|答案(1)|浏览(105)

我从www.example.com下载了它dafont.com,但我从www.example.com使用了这个生成器fontsquirrel.com,并在其中放入了我的css:

`@font-face {
  font-family: "victor_monoregular";
  src: url("victormono-regular-webfont.woff2") format("woff2"),
    url("victormono-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
`

但它在不同的浏览器上不起作用。
我试着把

`"src: url(VictorMono.otf);"`

我的CSS文件

s8vozzvw

s8vozzvw1#

检查您的旧字体是否未在Bootstrap文件或Javascript中注册,也许在某个地方有一个旧字体的条目,此链接可以防止重新编辑新字体

相关问题