欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-05-28 21:19:40
错误内容: glyphicons-halflings-regular.svg文件出错如下, the content of element type "font-face...

错误内容:

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>

以上所述是小编给大家介绍的bootstrap3使用错误记录及解决办法,希望对大家有所帮助