字体不适用于天蓝色

时间:2015-03-20 15:03:57

标签: css3 azure web-config font-face

这里我用我的font-face获取了我的CSS:

@font-face {
    font-family: 'bauhaus_93regular';
    src: url('/fonts/bauhaus93-webfont.eot');
    src: url('/fonts/bauhaus93-webfont.eot?#iefix') 
         format('embedded-opentype'), url('/fonts/bauhaus93-webfont.woff2') format('woff2'), url('/fonts/bauhaus93-webfont.woff') format('woff'), url('/fonts/bauhaus93-webfont.ttf') format('truetype'), url('/fonts/bauhaus93-webfont.svg#bauhaus_93regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

在这里,我在web.config中添加了以下块,以便在azure上运行自定义字体(当我部署我的网站时):

<system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
    <staticContent>
      <remove fileExtension=".svg" />
      <remove fileExtension=".eot" />
      <remove fileExtension=".woff" />
      <mimeMap fileExtension=".svg" mimeType="image/svg+xml"  />
      <mimeMap fileExtension=".eot" mimeType="application/vnd.ms-fontobject" />
      <mimeMap fileExtension=".woff" mimeType="application/x-woff" />
    </staticContent>
</system.webServer>

在localhost中工作正常。当我在azure上部署我的网站时,Buuuut没有工作...... 有人可以帮帮我吗?提前谢谢!

1 个答案:

答案 0 :(得分:0)

我解决了这个问题。如果我直接在应答器中指定新的font-family,就像这样:

<a class="white" id="TitleGravure"style="font-family:'Bauhaus 93';">
   La gravure dans toutes ses applications
</a>

工作正常。所以暂时我会这样做,在我调整路线的捆绑后...感谢您的帮助。