注意:Font Awesome 也在使用中
我正在使用导航栏左上角网站品牌中设置的字形图标 - 显示“镇上最好的城堡”的文字。问题似乎是字形图标的网络字体没有加载。相反,一个小方块是可见的,塔图标应该在它的位置。塔图标应使用页面上的以下标记呈现:
<span class="glyphicon glyphicon-tower"></span>
http://www.bestcastlesintown.co.uk/prototype/test3.php#.UneSnRDylCj
我相信 stylesheet.css 中的 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.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings';
-webkit-font-smoothing: antialiased;
font-style: normal;
font-weight: normal;
line-height: 1;
-moz-osx-font-smoothing: grayscale;
}
任何人都可以帮助解决这个问题吗?