【发布时间】:2015-08-13 00:40:25
【问题描述】:
我有这个 html 页面:
<link rel="shortcut icon" type="image/png" href="{% static "images/favicon.ico" %}"/>
<link rel="stylesheet" type="text/css" href="{% static "css/bootstrap.css" %}">
<link rel="stylesheet" type="text/css" href="{% static "css/bootstrap-theme.css" %}">
<link rel="stylesheet" type="text/css" href="{% static "fonts/font-awesome.min.css" %}">
<link rel="stylesheet" type="text/css" href="{% static "css/custom.css" %}" media="screen">
<script src="{% static "js/jquery.min.js" %}"></script>
<script src="{% static "js/bootstrap.min.js" %}"></script>
<script type="text/javascript" src="{% static "js/added.js" %}"></script>
[...]
<i class="glyphicon glyphicon-thumbs-up" id="like" name="{{post.id}}"> </i>
在 Chrome 和 Firefox 上都不会显示竖起大拇指图标,尽管事实上所有 css 文件都已加载并且引导 css 呈现正常。
我查看了关于 SO 的类似问题,但找不到我的答案。非常感谢您的帮助。
【问题讨论】:
-
你能看看我在Bootstrap glyphicon not showing in Form上的回答吗?
标签: twitter-bootstrap glyphicons