bootstrap字体图标本地如何正确引入
在bootstrap.css同父级中加入bootstrap-dist的 css文件包
然后在css文件中学下如下代码

@font-face {
	font-family:Glyphicons Halflings;
	src: url(fonts/glyphicons-halflings-regular.eot);
	src: url(fonts/glyphicons-halflings-regular.svg);
	src: url(fonts/glyphicons-halflings-regular.ttf);
	src: url(fonts/glyphicons-halflings-regular.woff);
	src: url(fonts/glyphicons-halflings-regular.woff2);
}

相关文章:

  • 2021-09-18
  • 2021-09-04
  • 2021-12-15
  • 2022-12-23
  • 2021-04-16
  • 2021-05-18
  • 2022-12-23
猜你喜欢
  • 2022-01-05
  • 2021-12-30
  • 2022-12-23
  • 2021-11-12
  • 2022-12-23
  • 2021-08-16
相关资源
相似解决方案