gpt4 book ai didi

grails - grails 3.3.0:它包括 Bootstrap 吗?

转载 作者:行者123 更新时间:2023-12-02 15:18:32 25 4
gpt4 key购买 nike

当试图弄清楚如何引导进入grails 3.3.0时,当支持该插件的版本已过期/不受支持时,我注意到application.css中已经存在一个引导项:

*= require bootstrap
*= require grails
*= require main
*= require mobile
*= require_self

在bootsrap.css中,其版本为3.3.6。

这似乎是一个未记录的功能,并且有很多关于如何使 bootstrap 进入grails 3的文章,如果它们已经存在,那是没有意义的,除非他们试图找出如何更新 bootstrap 版本的方法?

为了查看 bootstrap 是否正常工作,我编辑了默认的main.gsp并添加了:
<button type="button" class="btn btn-default btn-lg">
<span class="glyphicon glyphicon-star" aria-hidden="true"></span> Star
</button>

不幸的是,呈现的内容似乎已损坏-字形应位于的位置是一个方形框。

我尝试了许多其他引导示例,但它们似乎无法正常工作,即未正确呈现。我不知道这是因为 bootstrap 不起作用,还是默认情况下在grails产生的成千上万行CSS的肠子中都覆盖了所有内容。

有谁知道我可以在main.gps中放入的内容,如果 bootstrap 正在工作,它将以一种或另一种方式显示?

最佳答案

它仅包含引导样式表。如果要使用字形图标,则需要单独下载字形字体。

您还会在引导样式表中看到此内容,因为字体表示不存在的lib。

@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.woff2') format('woff2'), 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');
}

我猜想唯一包括了bootstrap样式表的样式表,以在不使用字形图标的情况下设置开始的"template"的样式。

Bootstrap的完整软件包如下所示( http://getbootstrap.com/getting-started/#download):
bootstrap/
├── css/
│ ├── bootstrap.css
│ ├── bootstrap.css.map
│ ├── bootstrap.min.css
│ ├── bootstrap.min.css.map
│ ├── bootstrap-theme.css
│ ├── bootstrap-theme.css.map
│ ├── bootstrap-theme.min.css
│ └── bootstrap-theme.min.css.map
├── js/
│ ├── bootstrap.js
│ └── bootstrap.min.js
└── fonts/
├── glyphicons-halflings-regular.eot
├── glyphicons-halflings-regular.svg
├── glyphicons-halflings-regular.ttf
├── glyphicons-halflings-regular.woff
└── glyphicons-halflings-regular.woff2

关于grails - grails 3.3.0:它包括 Bootstrap 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45017754/

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