Glyphicon不会渲染到模板

时间:2018-05-10 18:56:10

标签: angular bootstrap-4

我在VS Code中安装了bootstrap并将其导入styles.css

@import '~bootstrap/dist/css/bootstrap.css';

我还检查了package.json,可以在"bootstrap": "^4.1.1"下看到dependencies。 但是当我尝试将一个glyphicon渲染到模板时,我什么也得不到。以下是我的模板中的代码:<span class="glyphicon glyphicon-star"></span>。 有谁知道为什么会这样?

1 个答案:

答案 0 :(得分:2)

他们在Bootstrap 4中删除了glyphicons。所以你不能使用它们。

如果您需要图标,则必须手动将它们添加到项目中。 从https://glyphicons.com/下载Glyphicons,然后将其添加到index.html

您可以在此处获取更多信息https://getbootstrap.com/docs/4.0/migration/#components

希望它有所帮助...