gpt4 book ai didi

ruby-on-rails - Ruby on Rails Bootstrap Glyphicons 不工作

转载 作者:行者123 更新时间:2023-12-03 06:11:24 25 4
gpt4 key购买 nike

我已将 Bootstrap 添加到我的网站。这是我正在使用的结构。 (我无法删除 bootstrap.css 文件,因为我根据自己的喜好修改了它)。

>app
>>assets
>>>fonts
>>>>4 glypicons icon files.
>>>images
>>>>N/A
>>>javascripts
>>>>Bootstrap.js (Jquery is installed in a gem)
>>>stylesheets
>>>>Bootstrap.css

所有内容均已正确导入,但问题是字形无法正常工作,而我需要它们!

最佳答案

2015 年 11 月编辑:我会推荐这个 gem :https://github.com/twbs/bootstrap-sass它由 Bootstrap 社区积极维护,并且与 Ruby on Rails 配合得非常好。

我遇到了和你非常相似的问题,但我弄清楚了!在 bootstrap.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');
}

并将 ../fonts/ 替换为 /assets。这就是您的最终代码的样子。

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

我希望这有帮助!

关于ruby-on-rails - Ruby on Rails Bootstrap Glyphicons 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20255711/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com