简体   繁体   English

Bootstrap 3 Glyphicons不显示

[英]Bootstrap 3 Glyphicons Not Showing

My Bootstrap Glyphicons are not showing up for some reason. 由于某些原因,我的Bootstrap Glyphicons没有出现。

I have tried the answer found here , here , here , and here 我尝试了在这里这里这里这里找到的答案

Here is my HTML: 这是我的HTML:

<div class="service-wrapper">
     <h2 class="pricing-plan-title">Plan</h2>
     <span class="glyphicon glyhpicon-pencil" aria-hidden="true"></span>
    <p>Praesent rhoncus mauris ac sollicitudin vehicula. Nam fringilla turpis turpis</p>
</div>

Can anybody see what I am missing? 有人可以看到我所缺少的吗?

You need to correct your spelling from gly hp icon to gly ph icon : 您需要将拼写从gly hp icon更改为gly ph icon

<!-- From: --> <span class="glyphicon glyhpicon-pencil" aria-hidden="true"></span>
<!-- To:   --> <span class="glyphicon glyphicon-pencil" aria-hidden="true"></span>

There is a typo in your code. 您的代码中有一个错字。

In the glyphicon-pencil , the word glyphicon is wrongly typed. glyphicon-pencil ,单词glyphicon输入错误。

Try this 尝试这个

<span class="glyphicon glyphicon-pencil" aria-hidden="true"></span>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM