bootstrap图标乱码问题-解决方案

楼主在使用bootstrap时,出现了图标乱码问题,经过多次查找,才解决了问题(最后发现真的是很好解决的问题(^^))

如果出现乱码 请直接在自己写的CSS中重新引入一下font文件中的字体就好了

@font-face {
font-family: 'Glyphicons Halflings';
src: url('../../bootstrap/fonts/glyphicons-halflings-regular.eot');
src: url('../../bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../../bootstrap/fonts/glyphicons-halflings-regular.woff') format('woff'), url('../../bootstrap/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../../bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}