博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
前端——bootstrap无法显示图标问题
阅读量:6257 次
发布时间:2019-06-22

本文共 590 字,大约阅读时间需要 1 分钟。

  hot3.png

在页面上使用bootstrap的glyphicon图标:

<span class="glyphicon glyphicon-edit"></span>

引用本地的bootstrap样式文件

<link type="text/css" rel="stylesheet" href="../bootstrapCss/bootstrap.min.css">

 

1.在你的css文件夹的同级目录检查是否有fonts文件夹,fonts文件夹中应该放入bootstrap下载包中的fonts文件夹下的4个有关字体图标文件:

glyphicons-halflings-regular.woff

glyphicons-halflings-regular.ttf

glyphicons-halflings-regular.svg

glyphicons-halflings-regular.eot

 

2.引用本地的css文件,会引起跨域问题,也可以使用官方的css文件链接地址:

<link type="text/css" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">

 

转载于:https://my.oschina.net/fycool/blog/757666

你可能感兴趣的文章
Keras AttributeError 'NoneType' object has no attribute '_inbound_nodes'
查看>>
Gabor滤波器学习
查看>>
更改linux系统提示信息
查看>>
阿里巴巴CI:CD之分层自动化实践之路
查看>>
HDU 1060:Leftmost Digit
查看>>
numpy利用数组进行数据处理
查看>>
【转】TCP 网络状态图详解
查看>>
SQL Server之 (二) SQL语句 模糊查询 空值处理 聚合函数
查看>>
All about Using Burp Suite
查看>>
Nikto and whatweb
查看>>
无人值守工业控制系统网络安全解决方案
查看>>
c#设计模式之:外观模式(Facade)
查看>>
macvtap与vhost-net技术
查看>>
解决DESCryptoServiceProvider加解密时弱密钥异常
查看>>
Linux远程登录ssh免密码配置方法(仅供参考)
查看>>
validateJarFile jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet
查看>>
html5学习笔记——html保留标签(二)
查看>>
二分图判定--黑白染色
查看>>
ios 处理 touch 事件时偶尔的击穿现象
查看>>
第105天:Ajax 客户端与服务器基本知识
查看>>