Bootstrap4及以上版本图标问题解决方案:引入3版本字体
191 浏览量
更新于2024-08-30
收藏 144KB PDF 举报
在Bootstrap 4及以上版本中,可能会遇到无法使用内置图标的问题,因为Bootstrap 4默认不再包含Glyphicons字体图标集。这个问题可以通过以下步骤来解决:
1. 引入3.x版本的icons字体文件:由于Bootstrap 4不再提供内置的图标支持,你需要从Bootstrap 3版本中获取所需的icons。将Bootstrap 3的`fonts`文件夹(通常包含`glyphicons-halflings-regular.eot`, `glyphicons-halflings-regular.svg`, `glyphicons-halflings-regular.ttf`, `glyphicons-halflings-regular.woff`, 和 `glyphicons-halflings-regular.woff2`等文件)复制到你的项目目录中。
2. 修改CSS:在你的项目中,确保`bootstrap.min.css`文件之后添加以下自定义@font-face规则,以正确加载字体图标:
```css
@font-face {
font-family: 'Glyphicons Halflings';
src: url('../fonts/glyphicons-halflings-regular.eot');
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),
url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'),
url('../fonts/glyphicons-halflings-regular.woff') format('woff'),
url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),
url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
/* 为了保持与Bootstrap 3的兼容性,需要添加下面的样式 */
.glyphicon {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* 你可以根据需要替换或添加更多的图标,例如:
.glyphicon-asterisk:before {
content: "\002a";
}
.glyphicon-plus:before {
content: "\002b";
}
... */
```
通过以上操作,你可以在Bootstrap 4的项目中继续使用Bootstrap 3版本的Glyphicons图标。记得检查并更新HTML中的`.glyphicon`类,如`.glyphicon-asterisk`、`.glyphicon-plus`等,以引用相应的图标字符。如果你有其他版本的图标需求,可以查阅Bootstrap 3的官方文档或第三方图标库,如Font Awesome,来替换或补充这些图标。
点击了解资源详情
点击了解资源详情
点击了解资源详情
2011-04-16 上传
2018-09-23 上传
2020-09-01 上传
2020-09-01 上传
2021-01-19 上传
269 浏览量
weixin_38564718
- 粉丝: 5
- 资源: 916
最新资源
- MATLAB新功能:Multi-frame ViewRGB制作彩色图阴影
- XKCD Substitutions 3-crx插件:创新的网页文字替换工具
- Python实现8位等离子效果开源项目plasma.py解读
- 维护商店移动应用:基于PhoneGap的移动API应用
- Laravel-Admin的Redis Manager扩展使用教程
- Jekyll代理主题使用指南及文件结构解析
- cPanel中PHP多版本插件的安装与配置指南
- 深入探讨React和Typescript在Alias kopio游戏中的应用
- node.js OSC服务器实现:Gibber消息转换技术解析
- 体验最新升级版的mdbootstrap pro 6.1.0组件库
- 超市盘点过机系统实现与delphi应用
- Boogle: 探索 Python 编程的 Boggle 仿制品
- C++实现的Physics2D简易2D物理模拟
- 傅里叶级数在分数阶微分积分计算中的应用与实现
- Windows Phone与PhoneGap应用隔离存储文件访问方法
- iso8601-interval-recurrence:掌握ISO8601日期范围与重复间隔检查