当前位置:主页 > 网页前端 > JavaScript代码 >

BootStrap3使用错误记录及解决办法

时间:2021-01-09 11:14:20 | 栏目:JavaScript代码 | 点击:

错误内容:

glyphicons-halflings-regular.svg文件出错如下,

The content of element type "font-face" is incomplete, it must match "((font-face-src,(desc|title|metadata)*)|((desc|title|metadata)
+,font-face-src,((desc|title|metadata))*?))".

解决办法:

源代码:

<font-face units-per-em="1200" ascent="960" descent="-240"/>

修改成:

<font-face units-per-em="1200" ascent="960" descent="-240">
  <font-face-src>
    <font-face-name name="Glyphicons Halflings"/>
  </font-face-src>
</font-face>

您可能感兴趣的文章:

相关文章