嗨,我使用了称为minton的引导程序主题,该主题可以使用超棒的字体处理图标模糊的问题。我认为这是自举3/4的事情。

简而言之:This boostrap 4.0 lacks glypicons。我想添加它们。太多的依赖项需要它们。我在字体目录中有glyphicons字体


asssets/fonts/glyphicons-halflings-regular.eot
asssets/fonts/glyphicons-halflings-regular.svg
asssets/fonts/glyphicons-halflings-regular.tff
asssets/fonts/glyphicons-halflings-regular.woff


bootstrap.min.css在这里
 -asssets/css/bootstrap.min.css

我通过icons.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');
}


但在要求时它们不会出现。谁能阐明这一点?

最佳答案

Bootstrap 4不再具有字形图标,因此,如果您使用boostrap 4,将需要找到另一个解决方案(例如,真棒字体)

您已经提到了日期选择器库,该库支持引导程序2和引导程序3,并且提到它已被弃用以支持该引导程序:https://eonasdan.github.io/bootstrap-datetimepicker/

最好的选择是替换该组件,而不是尝试对某些较旧的库进行改装以使另一个旧的库工作,最终将需要对其进行替换。您最好早点联系它,而不是晚点。无论如何,都需要完成工作,因为我们可能会过时。

关于html - 重新添加glyphicons回到bootstrap 4.0,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52102662/

10-09 16:08