为什么自定义字体没有应用于ASP.NET MVC中的我的页面?

时间:2017-11-16 11:20:20

标签: css asp.net model-view-controller

我正在尝试将自定义字体添加到网页中。我使用的是谷歌浏览器。

我在CSS中指定路径如下:

    @font-face {
    font-family: ottosans_regular;
    src: url(../Content/Fonts/ottosans-regular-1v32-webfont.woff);
}

如此应用:

    body {
    font-family: ottosans_regular;
    background-color: #F0F0F0;
}

1 个答案:

答案 0 :(得分:0)

字体文件可能无法正确加载... 尝试在web.config中添加.woff的mime类型。

<system.webServer>
  ...
  <staticContent>
    <remove fileExtension=".woff" />
    <mimeMap fileExtension=".woff" mimeType="application/font-woff" />
  </staticContent>
</system.webServer>

更多信息here