@ font-face无法使用完整路径

时间:2016-08-26 14:43:10

标签: css font-face

这不是Font-Face use absolute path的副本。

在folder1中,我有index.html,main.css和digital.tff。我不明白为什么字体不能与完整路径一起使用。我测试了wood-table.jpg有没有完整路径,无论如何都可以。

这不起作用:

@font-face {
  font-family: "digital";
  src: url(http://www.example.com/folder1/digital.ttf);
}

body {
  background-image: url(http://www.example.com/folder1/wood-table.jpg);
  background-repeat: repeat;
  background-size: 100% 100%;
}

但这样做:

@font-face {
  font-family: "digital";
  src: url(digital.ttf);
}

body {
  background-image: url(http://www.example.com/folder1/wood-table.jpg);
  background-repeat: repeat;
  background-size: 100% 100%;
}

0 个答案:

没有答案